Unverified Commit 073dcef6 authored by Robert Schütz's avatar Robert Schütz Committed by GitHub
Browse files

Merge pull request #253964 from dotlambda/igraph-0.10.7

igraph: 0.10.6 -> 0.10.7
parents 03623526 846bad25
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -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/";
+2 −2
Original line number Diff line number Diff line
@@ -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 = ''