nixpkgs/pkgs/development/python-modules/networkx/default.nix

29 lines
679 B
Nix
Raw Normal View History

2018-01-01 16:11:22 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, nose
, decorator
, setuptools
2018-01-01 16:11:22 +01:00
}:
buildPythonPackage rec {
pname = "networkx";
2018-10-24 15:34:13 +02:00
# upgrade may break sage, please test the sage build or ping @timokau on upgrade
version = "2.2";
2018-01-01 16:11:22 +01:00
src = fetchPypi {
inherit pname version;
2018-02-19 19:48:32 +01:00
extension = "zip";
2018-10-24 15:34:13 +02:00
sha256 = "12swxb15299v9vqjsq4z8rgh5sdhvpx497xwnhpnb0gynrx6zra5";
2018-01-01 16:11:22 +01:00
};
checkInputs = [ nose ];
propagatedBuildInputs = [ decorator setuptools ];
2018-01-01 16:11:22 +01: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 19:48:32 +01:00
}