3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/networkx/default.nix

32 lines
720 B
Nix
Raw Normal View History

2018-01-01 15:11:22 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, nose
2019-10-17 07:53:19 +01:00
, pytest
2018-01-01 15:11:22 +00:00
, decorator
, setuptools
2018-01-01 15:11:22 +00:00
}:
buildPythonPackage rec {
pname = "networkx";
2018-10-24 14:34:13 +01:00
# upgrade may break sage, please test the sage build or ping @timokau on upgrade
version = "2.6.2";
2018-01-01 15:11:22 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "2306f1950ce772c5a59a57f5486d59bb9cab98497c45fc49cbc45ac0dec119bb";
2018-01-01 15:11:22 +00:00
};
propagatedBuildInputs = [ decorator setuptools ];
2019-10-17 07:53:19 +01:00
checkInputs = [ nose pytest];
checkPhase = ''
pytest
'';
2018-01-01 15:11:22 +00:00
meta = {
homepage = "https://networkx.github.io/";
description = "Library for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks";
license = lib.licenses.bsd3;
};
2018-02-19 18:48:32 +00:00
}