pythonPackages.python-igraph: init at 0.7.1.post6
This commit is contained in:
parent
f20100a3e4
commit
14c88b67c1
22
pkgs/development/python-modules/python-igraph/default.nix
Normal file
22
pkgs/development/python-modules/python-igraph/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ buildPythonPackage, fetchPypi, lib,
|
||||
pkgconfig, igraph }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-igraph";
|
||||
version = "0.7.1.post6";
|
||||
|
||||
buildInputs = [ pkgconfig igraph ];
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0xp61zz710qlzhmzbfr65d5flvsi8zf2xy78s6rsszh719wl5sm5";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "High performance graph data structures and algorithms";
|
||||
license = lib.licenses.gpl2;
|
||||
maintainers = [ lib.maintainers.MostAwesomeDude ];
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -449,6 +449,11 @@ in {
|
||||
|
||||
python-hosts = callPackage ../development/python-modules/python-hosts { };
|
||||
|
||||
python-igraph = callPackage ../development/python-modules/python-igraph {
|
||||
pkgconfig = pkgs.pkgconfig;
|
||||
igraph = pkgs.igraph;
|
||||
};
|
||||
|
||||
python3-openid = callPackage ../development/python-modules/python3-openid { };
|
||||
|
||||
python-periphery = callPackage ../development/python-modules/python-periphery { };
|
||||
|
Loading…
Reference in New Issue
Block a user