Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #311244 from eth3lbert/fix-pipdeptree

python3Packages.pipdeptree: Fix ModuleNotFoundError

authored by Weijia Wang and committed by GitHub b69e4c3d 87351084

+5 -1
+5 -1
pkgs/development/python-modules/pipdeptree/default.nix
··· 7 7 graphviz, 8 8 hatchling, 9 9 hatch-vcs, 10 + packaging, 10 11 pytest-mock, 11 12 pytestCheckHook, 12 13 pip, ··· 32 33 hatch-vcs 33 34 ]; 34 35 35 - dependencies = [ pip ]; 36 + dependencies = [ 37 + pip 38 + packaging 39 + ]; 36 40 37 41 passthru.optional-dependencies = { 38 42 graphviz = [ graphviz ];