mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
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,
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue