lol

Merge pull request #145592 from dotlambda/igraph-0.9.5

igraph: 0.9.4 -> 0.9.5

authored by

Robert Schütz and committed by
GitHub
7143a8d4 3b0f2374

+30 -14
+2 -2
pkgs/development/libraries/igraph/default.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "igraph"; 24 - version = "0.9.4"; 24 + version = "0.9.5"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "igraph"; 28 28 repo = pname; 29 29 rev = version; 30 - sha256 = "sha256-tF+cnJRv125bSpZIpABTIHAfJO4TNfSBHjnzpNTbFgk="; 30 + sha256 = "sha256-R5v1nbfYyIOzdw7LmkGQE4yVxpTVs6YF62jkfFrA1z8="; 31 31 }; 32 32 33 33 # Normally, igraph wants us to call bootstrap.sh, which will call
+2 -2
pkgs/development/python-modules/cozy/default.nix
··· 1 1 { buildPythonPackage, isPy3k, fetchFromGitHub, lib, 2 - z3, ply, python-igraph, oset, ordered-set, dictionaries, setuptools }: 2 + z3, ply, igraph, oset, ordered-set, dictionaries, setuptools }: 3 3 4 4 buildPythonPackage { 5 5 pname = "cozy"; ··· 7 7 disabled = !isPy3k; 8 8 9 9 propagatedBuildInputs = [ 10 - setuptools z3 ply python-igraph oset ordered-set dictionaries 10 + setuptools z3 ply igraph oset ordered-set dictionaries 11 11 ]; 12 12 13 13 src = fetchFromGitHub {
+17 -2
pkgs/development/python-modules/explorerscript/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, antlr4-python3-runtime, pygments, python-igraph }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , antlr4-python3-runtime 6 + , igraph 7 + , pygments 8 + }: 2 9 3 10 buildPythonPackage rec { 4 11 pname = "explorerscript"; ··· 11 18 sha256 = "1vzyliiyrxx8l9sfbqcyr4xn5swd7znkxy69kn0vb5rban8hm9c1"; 12 19 }; 13 20 14 - propagatedBuildInputs = [ antlr4-python3-runtime python-igraph ]; 21 + patches = [ 22 + # https://github.com/SkyTemple/ExplorerScript/pull/17 23 + (fetchpatch { 24 + url = "https://github.com/SkyTemple/ExplorerScript/commit/47d8b3d246881d675a82b4049b87ed7d9a0e1b15.patch"; 25 + sha256 = "0sadw9l2nypl2s8lw526lvbdj4rzqdvrjncx4zxxgyp3x47csb48"; 26 + }) 27 + ]; 28 + 29 + propagatedBuildInputs = [ antlr4-python3-runtime igraph ]; 15 30 checkInputs = [ pygments ]; 16 31 17 32 meta = with lib; {
+2 -2
pkgs/development/python-modules/kmapper/default.nix
··· 8 8 , pytestCheckHook 9 9 , networkx 10 10 , matplotlib 11 - , python-igraph 11 + , igraph 12 12 , plotly 13 13 , ipywidgets 14 14 }: ··· 35 35 pytestCheckHook 36 36 networkx 37 37 matplotlib 38 - python-igraph 38 + igraph 39 39 plotly 40 40 ipywidgets 41 41 ];
+2 -2
pkgs/development/python-modules/python-igraph/default.nix pkgs/development/python-modules/igraph/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "python-igraph"; 13 - version = "0.9.6"; 13 + version = "0.9.8"; 14 14 15 15 disabled = pythonOlder "3.6"; 16 16 ··· 18 18 owner = "igraph"; 19 19 repo = "python-igraph"; 20 20 rev = version; 21 - sha256 = "sha256-x/BUlMmSgjY2v6bVKPxmz86OCz6xgRUcfSqI3vV9MPs="; 21 + sha256 = "sha256-RtvT5/LZ/xP68yBB7DDKJGeNCiX4HyPTCuk+Ijd2nFs="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+1
pkgs/top-level/python-aliases.nix
··· 75 75 pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10 76 76 pytestquickcheck = pytest-quickcheck; # added 2021-07-20 77 77 pytestrunner = pytest-runner; # added 2021-01-04 78 + python-igraph = igraph; # added 2021-11-11 78 79 python-lz4 = lz4; # added 2018-06-01 79 80 python_mimeparse = python-mimeparse; # added 2021-10-31 80 81 python-subunit = subunit; # added 2021-09-10
+4 -4
pkgs/top-level/python-packages.nix
··· 3704 3704 3705 3705 ignite = callPackage ../development/python-modules/ignite { }; 3706 3706 3707 + igraph = callPackage ../development/python-modules/igraph { 3708 + inherit (pkgs) igraph; 3709 + }; 3710 + 3707 3711 ihatemoney = callPackage ../development/python-modules/ihatemoney { }; 3708 3712 3709 3713 ijson = callPackage ../development/python-modules/ijson { }; ··· 7516 7520 python-hpilo = callPackage ../development/python-modules/python-hpilo { }; 7517 7521 7518 7522 python-http-client = callPackage ../development/python-modules/python-http-client { }; 7519 - 7520 - python-igraph = callPackage ../development/python-modules/python-igraph { 7521 - inherit (pkgs) igraph; 7522 - }; 7523 7523 7524 7524 pythonix = callPackage ../development/python-modules/pythonix { 7525 7525 nix = pkgs.nix_2_3;