python3Packages.networkx: 2.7.1 → 2.8.2
This commit is contained in:
parent
00f527c923
commit
a972e002a8
@ -2,26 +2,25 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, nose
|
, nose
|
||||||
, pytest
|
, pytestCheckHook
|
||||||
, decorator
|
, decorator
|
||||||
, setuptools
|
, setuptools
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "networkx";
|
pname = "networkx";
|
||||||
# upgrade may break sage, please test the sage build or ping @timokau on upgrade
|
# upgrade may break sage, please test the sage build or ping @timokau on upgrade
|
||||||
version = "2.7.1";
|
version = "2.8.2";
|
||||||
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-0RlLp1Pl7tB83s0dI8XNejx3IJm9jb0v6jZniM9N57o=";
|
sha256 = "sha256-rpnJsNNeW0pizxz+oB5bNjPY0C9KDq1paFtufeW4Xqs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ decorator setuptools ];
|
propagatedBuildInputs = [ decorator setuptools ];
|
||||||
checkInputs = [ nose pytest];
|
checkInputs = [ nose pytestCheckHook ];
|
||||||
checkPhase = ''
|
|
||||||
pytest
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://networkx.github.io/";
|
homepage = "https://networkx.github.io/";
|
||||||
|
Loading…
Reference in New Issue
Block a user