about summary refs log tree commit diff
path: root/pkgs/development/python-modules/blis
diff options
context:
space:
mode:
authorDaniël de Kok <me@danieldk.eu>2019-08-29 20:15:11 +0200
committerDaniël de Kok <me@danieldk.eu>2019-08-29 20:18:49 +0200
commit2dc3bf1d1b031f534754243aa5a998d5fce7f813 (patch)
treecb23ef29091740650afd7108b3c967279a988bc9 /pkgs/development/python-modules/blis
parent3f632253094adbf884e7e33a82f7289555bcb734 (diff)
pythonPackages.blis: 0.2.4 -> 0.4.0
Major changes:

- Update vendored blis to 0.5.1
- Change license to BSD
- Support for read-only numpy arrays
Diffstat (limited to 'pkgs/development/python-modules/blis')
-rw-r--r--pkgs/development/python-modules/blis/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/blis/default.nix b/pkgs/development/python-modules/blis/default.nix
index e038e07507a04..6afbe0e2f5d29 100644
--- a/pkgs/development/python-modules/blis/default.nix
+++ b/pkgs/development/python-modules/blis/default.nix
@@ -9,11 +9,11 @@
 
 buildPythonPackage rec {
   pname = "blis";
-  version = "0.2.4";
+  version = "0.4.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "0c5hd0bim9134sk8wb31cqzvi9c380rbl5zwjiwrq8nnix8a2k1d";
+    sha256 = "1khh02z6wryrnrxlx2wrxzhaqsg5hlgypy0643rvi4zcqanvdpym";
   };
 
   nativeBuildInputs = [
@@ -31,7 +31,7 @@ buildPythonPackage rec {
   meta = with stdenv.lib; {
     description = "BLAS-like linear algebra library";
     homepage = https://github.com/explosion/cython-blis;
-    license = licenses.mit;
+    license = licenses.bsd3;
     maintainers = with maintainers; [ danieldk ];
-    };
+  };
 }