From 9ed7e32d10fda06f8af8bdabe288edb90389f523 Mon Sep 17 00:00:00 2001 From: eth3lbert Date: Mon, 13 May 2024 11:12:35 +0800 Subject: [PATCH] python3Packages.pipdeptree: Fix ModuleNotFoundError --- pkgs/development/python-modules/pipdeptree/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pipdeptree/default.nix b/pkgs/development/python-modules/pipdeptree/default.nix index 8dad1316c1a7..e0575e1b4929 100644 --- a/pkgs/development/python-modules/pipdeptree/default.nix +++ b/pkgs/development/python-modules/pipdeptree/default.nix @@ -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 ];