summary refs log tree commit diff
path: root/pkgs/development/python-modules/blis/default.nix
blob: e038e07507a0477139883cf74feca1055fbeb6cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv
, 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 ];
    };
}