1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, cython
5, hypothesis
6, numpy
7, pytest
8}:
9
10buildPythonPackage rec {
11 pname = "blis";
12 version = "0.2.4";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "0c5hd0bim9134sk8wb31cqzvi9c380rbl5zwjiwrq8nnix8a2k1d";
17 };
18
19 nativeBuildInputs = [
20 cython
21 ];
22
23
24 checkInputs = [
25 cython
26 hypothesis
27 numpy
28 pytest
29 ];
30
31 meta = with stdenv.lib; {
32 description = "BLAS-like linear algebra library";
33 homepage = https://github.com/explosion/cython-blis;
34 license = licenses.mit;
35 maintainers = with maintainers; [ danieldk ];
36 };
37}