python310Packages.igraph: 0.9.11 -> 0.10.2

https://github.com/igraph/python-igraph/blob/0.10.2/CHANGELOG.md
This commit is contained in:
Robert Schütz 2022-11-10 10:24:14 -08:00 committed by Robert Schütz
parent b6ab99e519
commit 6adb657a54

View file

@ -5,20 +5,20 @@
, pkg-config
, igraph
, texttable
, python
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "igraph";
version = "0.9.11";
version = "0.10.2";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "igraph";
repo = "python-igraph";
rev = version;
hash = "sha256-tvkV5ve9X+LXx3LOdHIPljQKZc1v6yts0juo4SwDmfY=";
hash = "sha256-ro2EkJQxW8aHejAvkaXI9mJC5XgFt31akhzFDAPZ4ow=";
};
postPatch = ''
@ -42,9 +42,9 @@ buildPythonPackage rec {
# told to do it. ~ C.
setupPyGlobalFlags = [ "--use-pkg-config" ];
checkPhase = ''
${python.interpreter} -m unittest
'';
checkInputs = [
unittestCheckHook
];
pythonImportsCheck = [ "igraph" ];