Unverified Commit 4ca7edef authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #212824 from dotlambda/igraph-0.10.4

igraph: 0.10.3 -> 0.10.4
parents af6a483e 0578fc09
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 = ''
+5 −3
Original line number Diff line number Diff line
@@ -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 = ''