pythonPackages.python-igraph: fix build
It was failing on Hydra + tests are failing with Py3
This commit is contained in:
parent
4dce6bc461
commit
169db87d32
@ -1,22 +1,24 @@
|
|||||||
{ buildPythonPackage, fetchPypi, lib,
|
{ buildPythonPackage, fetchPypi, lib, isPy3k
|
||||||
pkgconfig, igraph }:
|
, pkgconfig, igraph }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-igraph";
|
pname = "python-igraph";
|
||||||
version = "0.7.1.post6";
|
version = "0.7.1.post6";
|
||||||
|
|
||||||
buildInputs = [ pkgconfig igraph ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
buildInputs = [ igraph ];
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0xp61zz710qlzhmzbfr65d5flvsi8zf2xy78s6rsszh719wl5sm5";
|
sha256 = "0xp61zz710qlzhmzbfr65d5flvsi8zf2xy78s6rsszh719wl5sm5";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
doCheck = !isPy3k;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "High performance graph data structures and algorithms";
|
description = "High performance graph data structures and algorithms";
|
||||||
|
homepage = "https://igraph.org/python/";
|
||||||
license = lib.licenses.gpl2;
|
license = lib.licenses.gpl2;
|
||||||
maintainers = [ lib.maintainers.MostAwesomeDude ];
|
maintainers = [ lib.maintainers.MostAwesomeDude ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user