depot/third_party/nixpkgs/pkgs/development/python-modules/spacy/legacy.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

28 lines
692 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
}:
buildPythonPackage rec {
pname = "spacy-legacy";
version = "3.0.12";
src = fetchPypi {
inherit pname version;
hash = "sha256-s31uDJtuHXyhz1vHFSq2SkxGcfWcha2vej/LhwNXp3Q=";
};
# nativeCheckInputs = [ pytestCheckHook spacy ];
doCheck = false;
pythonImportsCheck = [ "spacy_legacy" ];
meta = with lib; {
description = "Legacy registered functions for spaCy backwards compatibility";
homepage = "https://github.com/explosion/spacy-legacy";
changelog = "https://github.com/explosion/spacy-legacy/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ melling ];
};
}