mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
Add networkx python package
This commit is contained in:
parent
c84c281508
commit
8e0134c2cd
@ -13951,5 +13951,21 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
networkx = buildPythonPackage rec {
|
||||
name = "networkx-1.9.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/n/networkx/networkx-1.9.1.tar.gz";
|
||||
sha256 = "6380eb38d0b5770d7e50813c8a48ff7c373b2187b4220339c1adce803df01c59";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ nose decorator ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://networkx.github.io/";
|
||||
description = "Library for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks.";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
};
|
||||
|
||||
}); in pythonPackages
|
||||
|
Loading…
Reference in New Issue
Block a user