Merge pull request #253964 from dotlambda/igraph-0.10.7

igraph: 0.10.6 -> 0.10.7
This commit is contained in:
Robert Schütz
2023-09-13 19:02:24 +00:00
committed by GitHub
2 changed files with 8 additions and 4 deletions
@@ -26,13 +26,13 @@ assert (blas.isILP64 == lapack.isILP64 &&
stdenv.mkDerivation (finalAttrs: {
pname = "igraph";
version = "0.10.6";
version = "0.10.7";
src = fetchFromGitHub {
owner = "igraph";
repo = finalAttrs.pname;
rev = finalAttrs.version;
hash = "sha256-HNc+xU7Gcv9BSpb2OgyG9tCbk/dfWw5Ix1c2gvFZklE=";
hash = "sha256-1ge5V9G2jmIWQE5TW7+6cXCV9viFkhcnjpYrLQVLrgg=";
};
postPatch = ''
@@ -92,6 +92,10 @@ stdenv.mkDerivation (finalAttrs: {
install_name_tool -change libblas.dylib ${blas}/lib/libblas.dylib $out/lib/libigraph.dylib
'';
passthru.tests = {
python = python3.pkgs.igraph;
};
meta = with lib; {
description = "C library for complex network analysis and graph theory";
homepage = "https://igraph.org/";
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "igraph";
version = "0.10.6";
version = "0.10.8";
disabled = pythonOlder "3.7";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "igraph";
repo = "python-igraph";
rev = "refs/tags/${version}";
hash = "sha256-xdzk/gcHL/kFpZabdP7Cq4lUv0aEwpevgLJYqfb2KGY=";
hash = "sha256-EpWkFKN8fhKkzR2g9Uv0/LxSwi4TkraH5rjde7yR+C8=";
};
postPatch = ''