Merge pull request #68727 from d-goldin/fix_networkx_missing_dep
networkx: fixing undeclared dependency
This commit is contained in:
commit
280386382e
@ -3,6 +3,7 @@
|
|||||||
, fetchPypi
|
, fetchPypi
|
||||||
, nose
|
, nose
|
||||||
, decorator
|
, decorator
|
||||||
|
, setuptools
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -17,7 +18,7 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ nose ];
|
checkInputs = [ nose ];
|
||||||
propagatedBuildInputs = [ decorator ];
|
propagatedBuildInputs = [ decorator setuptools ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://networkx.github.io/";
|
homepage = "https://networkx.github.io/";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user