Merge pull request #212824 from dotlambda/igraph-0.10.4

igraph: 0.10.3 -> 0.10.4
This commit is contained in:
Martin Weinelt
2023-01-29 01:14:42 +00:00
committed by GitHub
2 changed files with 7 additions and 5 deletions
@@ -26,13 +26,13 @@ assert (blas.isILP64 == lapack.isILP64 &&
stdenv.mkDerivation rec {
pname = "igraph";
version = "0.10.3";
version = "0.10.4";
src = fetchFromGitHub {
owner = "igraph";
repo = pname;
rev = version;
hash = "sha256-+U8bo68Q6XX3p2sZiIChjidcRwA10gv9eWccRt4MoYM=";
hash = "sha256-LsTOxUktGZcp46Ec9QH3+9C+VADMYTZZCjKF1gp36xk=";
};
postPatch = ''
@@ -10,15 +10,17 @@
buildPythonPackage rec {
pname = "igraph";
version = "0.10.3";
version = "0.10.4";
disabled = pythonOlder "3.7";
format = "setuptools";
src = fetchFromGitHub {
owner = "igraph";
repo = "python-igraph";
rev = version;
hash = "sha256-j7c1CtZ796EYMsS11kd8YED7pPolskgT+611uvePTsA=";
rev = "refs/tags/${version}";
hash = "sha256-DR4D12J/BKFpF4hMHfitNmwDZ7UEo+pI0tvEa1T5GTY=";
};
postPatch = ''