From 7136f7f9169f8614a4fc9f348ef5e1084efcd42f Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 19 Jan 2025 21:14:33 +0100 Subject: [PATCH] python3Packages.blis: 1.0.2 -> 1.2.0 https://github.com/explosion/cython-blis/releases/tag/release-release-v1.2.0 --- pkgs/development/python-modules/blis/default.nix | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/blis/default.nix b/pkgs/development/python-modules/blis/default.nix index 887139f414df..076b2a65ab78 100644 --- a/pkgs/development/python-modules/blis/default.nix +++ b/pkgs/development/python-modules/blis/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "blis"; - version = "1.0.2"; + version = "1.2.0"; pyproject = true; disabled = pythonOlder "3.9"; @@ -24,16 +24,9 @@ buildPythonPackage rec { owner = "explosion"; repo = "cython-blis"; tag = "release-v${version}"; - hash = "sha256-J/EaJNmImcK4zScpbYPlQuoLyjoUkUgxUp6926P6rUQ="; + hash = "sha256-TyyB0kPGX517fe0rI4T+VkSnFvTRCFR06BLwo67X9zQ="; }; - postPatch = '' - # See https://github.com/numpy/numpy/issues/21079 - # has no functional difference as the name is only used in log output - substituteInPlace blis/benchmark.py \ - --replace-fail 'numpy.__config__.blas_ilp64_opt_info["libraries"]' '["dummy"]' - ''; - preCheck = '' # remove src module, so tests use the installed module instead rm -rf ./blis @@ -66,7 +59,7 @@ buildPythonPackage rec { }; meta = with lib; { - changelog = "https://github.com/explosion/cython-blis/releases/tag/release-v${version}"; + changelog = "https://github.com/explosion/cython-blis/releases/tag/release-${src.tag}"; description = "BLAS-like linear algebra library"; homepage = "https://github.com/explosion/cython-blis"; license = licenses.bsd3;