Unverified Commit b69e4c3d authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #311244 from eth3lbert/fix-pipdeptree

python3Packages.pipdeptree: Fix ModuleNotFoundError
parents 87351084 9ed7e32d
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@
  graphviz,
  hatchling,
  hatch-vcs,
  packaging,
  pytest-mock,
  pytestCheckHook,
  pip,
@@ -32,7 +33,10 @@ buildPythonPackage rec {
    hatch-vcs
  ];

  dependencies = [ pip ];
  dependencies = [
    pip
    packaging
  ];

  passthru.optional-dependencies = {
    graphviz = [ graphviz ];