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
commit 280386382e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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