Merge pull request #68727 from d-goldin/fix_networkx_missing_dep

networkx: fixing undeclared dependency
This commit is contained in:
worldofpeace
2019-09-17 07:36:59 -04:00
committed by GitHub

View File

@@ -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/";