Merge pull request #209930 from mattmelling/spacy-legacy-description

python3Packages.spacy-legacy: fix package description string
This commit is contained in:
Fabian Affolter
2023-01-10 08:37:26 +01:00
committed by GitHub

View File

@@ -14,11 +14,15 @@ buildPythonPackage rec {
# checkInputs = [ pytestCheckHook spacy ];
doCheck = false;
pythonImportsCheck = [ "spacy_legacy" ];
pythonImportsCheck = [
"spacy_legacy"
];
meta = with lib; {
description = "A Path interface for local and cloud bucket storage";
homepage = "https://github.com/justindujardin/pathy";
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 ];
};