nixpkgs/pkgs/development/python-modules/blis/default.nix

38 lines
610 B
Nix
Raw Normal View History

2019-05-11 13:30:13 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, cython
, hypothesis
, numpy
, pytest
}:
buildPythonPackage rec {
pname = "blis";
version = "0.4.0";
2019-05-11 13:30:13 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1khh02z6wryrnrxlx2wrxzhaqsg5hlgypy0643rvi4zcqanvdpym";
2019-05-11 13:30:13 +00:00
};
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.bsd3;
2019-05-11 13:30:13 +00:00
maintainers = with maintainers; [ danieldk ];
};
2019-05-11 13:30:13 +00:00
}