Merge pull request #311244 from eth3lbert/fix-pipdeptree

python3Packages.pipdeptree: Fix ModuleNotFoundError
This commit is contained in:
Weijia Wang 2024-05-13 11:24:53 +02:00 committed by GitHub
commit b69e4c3d18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 ];