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