3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.python-igraph: fix build

It was failing on Hydra
+ tests are failing with Py3
This commit is contained in:
Renaud 2019-05-09 19:45:24 +02:00 committed by GitHub
parent 4dce6bc461
commit 169db87d32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,22 +1,24 @@
{ buildPythonPackage, fetchPypi, lib,
pkgconfig, igraph }:
{ buildPythonPackage, fetchPypi, lib, isPy3k
, pkgconfig, igraph }:
buildPythonPackage rec {
pname = "python-igraph";
version = "0.7.1.post6";
buildInputs = [ pkgconfig igraph ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ igraph ];
src = fetchPypi {
inherit pname version;
sha256 = "0xp61zz710qlzhmzbfr65d5flvsi8zf2xy78s6rsszh719wl5sm5";
};
doCheck = !isPy3k;
meta = {
description = "High performance graph data structures and algorithms";
homepage = "https://igraph.org/python/";
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.MostAwesomeDude ];
};
}