pythonPackages.blis: init at 0.2.4

This commit is contained in:
Daniël de Kok 2019-05-11 15:30:13 +02:00
parent b631c266ee
commit 54f9e90e4f
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, cython
, hypothesis
, numpy
, pytest
}:
buildPythonPackage rec {
pname = "blis";
version = "0.2.4";
src = fetchPypi {
inherit pname version;
sha256 = "0c5hd0bim9134sk8wb31cqzvi9c380rbl5zwjiwrq8nnix8a2k1d";
};
nativeBuildInputs = [
cython
];
checkInputs = [
cython
hypothesis
numpy
pytest
];
meta = with stdenv.lib; {
description = "BLAS-like linear algebra library";
homepage = https://github.com/explosion/cython-blis;
license = licenses.mit;
maintainers = with maintainers; [ danieldk ];
};
}

View file

@ -5429,6 +5429,8 @@ in {
backports_weakref = callPackage ../development/python-modules/backports_weakref { };
blis = callPackage ../development/python-modules/blis { };
srsly = callPackage ../development/python-modules/srsly { };
thinc = callPackage ../development/python-modules/thinc { };