Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / blis / default.nix
blob5d292c93fbbb21a6ceecf787e36e148ee66a5d02
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , cython
5 , hypothesis
6 , numpy
7 , pytest
8 }:
10 buildPythonPackage rec {
11   pname = "blis";
12   version = "0.7.4";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "7daa615a97d4f28db0f332b710bfe1900b15d0c25841c6d727965e4fd91e09cf";
17   };
19   nativeBuildInputs = [
20     cython
21   ];
23   propagatedBuildInputs = [
24     numpy
25   ];
28   checkInputs = [
29     hypothesis
30     pytest
31   ];
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   };