mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03: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
@ -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 New Issue
Block a user