python3Packages.python-igraph: rename to igraph

https://igraph.org/2021/10/29/igraph-0.9.8-python.html
This commit is contained in:
Robert Schütz
2021-11-11 22:06:59 -08:00
parent f1d204a880
commit 63acfd5685
6 changed files with 11 additions and 10 deletions
@@ -0,0 +1,54 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, pkg-config
, igraph
, texttable
, python
}:
buildPythonPackage rec {
pname = "python-igraph";
version = "0.9.8";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "igraph";
repo = "python-igraph";
rev = version;
sha256 = "sha256-RtvT5/LZ/xP68yBB7DDKJGeNCiX4HyPTCuk+Ijd2nFs=";
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
igraph
igraph.dev
];
propagatedBuildInputs = [
texttable
];
# NB: We want to use our igraph, not vendored igraph, but even with
# pkg-config on the PATH, their custom setup.py still needs to be explicitly
# told to do it. ~ C.
setupPyGlobalFlags = [ "--use-pkg-config" ];
checkPhase = ''
${python.interpreter} -m unittest
'';
pythonImportsCheck = [ "igraph" ];
meta = with lib; {
description = "High performance graph data structures and algorithms";
homepage = "https://igraph.org/python/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ MostAwesomeDude dotlambda ];
};
}