Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 647 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, cython 5, hypothesis 6, numpy 7, pytest 8}: 9 10buildPythonPackage rec { 11 pname = "blis"; 12 version = "0.7.1"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "014771a0f753a64ef5610c5b3d4a090b263073bdd59b8ad0d872ce1e06e7315a"; 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 stdenv.lib; { 34 description = "BLAS-like linear algebra library"; 35 homepage = "https://github.com/explosion/cython-blis"; 36 license = licenses.bsd3; 37 maintainers = with maintainers; [ danieldk ]; 38 }; 39}