1{ buildPythonPackage, fetchPypi, lib, isPy3k
2, pkgconfig, igraph }:
3
4buildPythonPackage rec {
5 pname = "python-igraph";
6 version = "0.7.1.post6";
7
8 nativeBuildInputs = [ pkgconfig ];
9 buildInputs = [ igraph ];
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "0xp61zz710qlzhmzbfr65d5flvsi8zf2xy78s6rsszh719wl5sm5";
14 };
15
16 doCheck = !isPy3k;
17
18 meta = {
19 description = "High performance graph data structures and algorithms";
20 homepage = "https://igraph.org/python/";
21 license = lib.licenses.gpl2;
22 maintainers = [ lib.maintainers.MostAwesomeDude ];
23 };
24}