{ lib , buildPythonPackage , fetchPypi , cython , hypothesis , numpy , pytest }: buildPythonPackage rec { pname = "blis"; version = "0.7.5"; src = fetchPypi { inherit pname version; sha256 = "833e01e9eaff4c01aa6e049bbc1e6acb9eca6ee513d7b35b5bf135d49705ad33"; }; nativeBuildInputs = [ cython ]; propagatedBuildInputs = [ numpy ]; checkInputs = [ hypothesis pytest ]; meta = with lib; { description = "BLAS-like linear algebra library"; homepage = "https://github.com/explosion/cython-blis"; license = licenses.bsd3; platforms = platforms.x86_64; }; }