mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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).
This commit is contained in:
parent
700cc56a0e
commit
5b3fb23360
1 changed files with 2 additions and 1 deletions
|
@ -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/";
|
||||
|
|
Loading…
Reference in a new issue