From 5b3fb23360cba3d462f6ad49897087a123b80502 Mon Sep 17 00:00:00 2001 From: Dima Date: Sat, 14 Sep 2019 03:20:17 +0200 Subject: [PATCH] networkx: fixing undeclared dependency the current version of networkx implicitly depends on pkg_resources from setuptools to check the version of pydot (https://github.com/networkx/networkx/issues/3173). --- pkgs/development/python-modules/networkx/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/networkx/default.nix b/pkgs/development/python-modules/networkx/default.nix index 85b53bd9df68..a4c66048953b 100644 --- a/pkgs/development/python-modules/networkx/default.nix +++ b/pkgs/development/python-modules/networkx/default.nix @@ -3,6 +3,7 @@ , fetchPypi , nose , decorator +, setuptools }: buildPythonPackage rec { @@ -17,7 +18,7 @@ buildPythonPackage rec { }; checkInputs = [ nose ]; - propagatedBuildInputs = [ decorator ]; + propagatedBuildInputs = [ decorator setuptools ]; meta = { homepage = "https://networkx.github.io/";