nixpkgs/pkgs/development/python-modules/blis/default.nix
Daniël de Kok 79e6a1f3e2 python3Packages.spacy: remove myself as a maintainer
Remove myself as a maintainer of spaCy and its dependencies.
2021-02-01 14:50:57 +01:00

40 lines
621 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, cython
, hypothesis
, numpy
, pytest
}:
buildPythonPackage rec {
pname = "blis";
version = "0.7.4";
src = fetchPypi {
inherit pname version;
sha256 = "7daa615a97d4f28db0f332b710bfe1900b15d0c25841c6d727965e4fd91e09cf";
};
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;
};
}