Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 39 lines 621 B view raw
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.4"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "7daa615a97d4f28db0f332b710bfe1900b15d0c25841c6d727965e4fd91e09cf"; 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}