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