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

38 lines
624 B
Nix
Raw Normal View History

2019-05-11 14:30:13 +01:00
{ stdenv
, buildPythonPackage
, fetchPypi
, cython
, hypothesis
, numpy
, pytest
}:
buildPythonPackage rec {
pname = "blis";
2019-10-16 10:43:03 +01:00
version = "0.4.1";
2019-05-11 14:30:13 +01:00
src = fetchPypi {
inherit pname version;
2019-10-16 10:43:03 +01:00
sha256 = "d69257d317e86f34a7f230a2fd1f021fd2a1b944137f40d8cdbb23bd334cd0c4";
2019-05-11 14:30:13 +01: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 14:30:13 +01:00
maintainers = with maintainers; [ danieldk ];
};
2019-05-11 14:30:13 +01:00
}