Skip to content

Commit

Permalink
networkx: fixing undeclared dependency
Browse files Browse the repository at this point in the history
the current version of networkx implicitly depends on
pkg_resources from setuptools to check the version of
pydot (networkx/networkx#3173).

(cherry picked from commit 5b3fb23)
  • Loading branch information
d-goldin authored and worldofpeace committed Sep 17, 2019
1 parent e83682c commit 3a16352
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/networkx/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
, fetchPypi
, nose
, decorator
, setuptools
}:

buildPythonPackage rec {
Expand All @@ -17,7 +18,7 @@ buildPythonPackage rec {
};

checkInputs = [ nose ];
propagatedBuildInputs = [ decorator ];
propagatedBuildInputs = [ decorator setuptools ];

meta = {
homepage = "https://networkx.github.io/";
Expand Down

0 comments on commit 3a16352

Please sign in to comment.