3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.python-igraph: init at 0.7.1.post6

This commit is contained in:
Corbin 2018-06-28 21:41:45 -07:00
parent f20100a3e4
commit 14c88b67c1
2 changed files with 27 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };