blob: d496dccbd5232fff87996f849cb17b9d1d6051e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
lib,
fetchPypi,
buildPythonPackage,
}:
buildPythonPackage rec {
pname = "spacy-legacy";
version = "3.0.12";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-s31uDJtuHXyhz1vHFSq2SkxGcfWcha2vej/LhwNXp3Q=";
};
# nativeCheckInputs = [ pytestCheckHook spacy ];
doCheck = false;
pythonImportsCheck = [ "spacy_legacy" ];
meta = {
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 = lib.licenses.asl20;
};
}
|