summary refs log tree commit diff
diff options
context:
space:
mode:
authorRan Xiao <ben.xiao@me.com>2023-03-29 20:47:58 +1100
committerRan Xiao <ben.xiao@me.com>2023-03-29 22:02:23 +1100
commit1ef879bc4f9c1e1352b7cb3e56b2d62f1ee07a05 (patch)
treefded6080656ce5abbfc3442e3097fef77418ab32
parentc9183f5905df49ea44f7bd864c6277ba7256fd01 (diff)
downloadnixpkgs-1ef879bc4f9c1e1352b7cb3e56b2d62f1ee07a05.tar
nixpkgs-1ef879bc4f9c1e1352b7cb3e56b2d62f1ee07a05.tar.gz
nixpkgs-1ef879bc4f9c1e1352b7cb3e56b2d62f1ee07a05.tar.bz2
nixpkgs-1ef879bc4f9c1e1352b7cb3e56b2d62f1ee07a05.tar.lz
nixpkgs-1ef879bc4f9c1e1352b7cb3e56b2d62f1ee07a05.tar.xz
nixpkgs-1ef879bc4f9c1e1352b7cb3e56b2d62f1ee07a05.tar.zst
nixpkgs-1ef879bc4f9c1e1352b7cb3e56b2d62f1ee07a05.zip
python3Packages.blis: 0.9.1 -> 0.7.9
-rw-r--r--pkgs/development/python-modules/blis/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/blis/default.nix b/pkgs/development/python-modules/blis/default.nix
index d5ddebc9c52..53cd8b17d9c 100644
--- a/pkgs/development/python-modules/blis/default.nix
+++ b/pkgs/development/python-modules/blis/default.nix
@@ -10,16 +10,14 @@
 
 buildPythonPackage rec {
   pname = "blis";
-  # Do not update to BLIS 0.9.x until the following issue is resolved:
-  # https://github.com/explosion/thinc/issues/771#issuecomment-1255825935
-  version = "0.9.1";
+  version = "0.7.9";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-fOrEZoAfnZfss04Q3e2MJM9eCSfqfoNNocydLtP8Nm8=";
+    hash = "sha256-Ke9MJQB3hakP/C8Ks9O9O3XNLXhWqaSCt9DayNURoJ0=";
   };
 
   postPatch = ''
@@ -45,6 +43,12 @@ buildPythonPackage rec {
     "blis"
   ];
 
+  passthru = {
+    # Do not update to BLIS 0.9.x until the following issue is resolved:
+    # https://github.com/explosion/thinc/issues/771#issuecomment-1255825935
+    skipBulkUpdate = true;
+  };
+
   meta = with lib; {
     description = "BLAS-like linear algebra library";
     homepage = "https://github.com/explosion/cython-blis";