Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / networkx / 2.2.nix
bloba4c66048953be5addc31b141b91f03c676613e8b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 , decorator
6 , setuptools
7 }:
9 buildPythonPackage rec {
10   pname = "networkx";
11   # upgrade may break sage, please test the sage build or ping @timokau on upgrade
12   version = "2.2";
14   src = fetchPypi {
15     inherit pname version;
16     extension = "zip";
17     sha256 = "12swxb15299v9vqjsq4z8rgh5sdhvpx497xwnhpnb0gynrx6zra5";
18   };
20   checkInputs = [ nose ];
21   propagatedBuildInputs = [ decorator setuptools ];
23   meta = {
24     homepage = "https://networkx.github.io/";
25     description = "Library for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks";
26     license = lib.licenses.bsd3;
27   };