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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
{
lib,
blas,
blis,
buildPythonPackage,
catalogue,
confection,
cymem,
cython_0,
fetchPypi,
hypothesis,
mock,
murmurhash,
numpy,
preshed,
pydantic,
pytestCheckHook,
setuptools,
srsly,
wasabi,
}:
buildPythonPackage rec {
pname = "thinc";
version = "9.1.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-IfrimG13d6bwULkEbcnqsRhS8cmpl9zJAy8+zCJ4Sko=";
};
postPatch = ''
substituteInPlace pyproject.toml setup.cfg \
--replace-fail "blis>=1.0.0,<1.1.0" blis
'';
build-system = [
blis
cymem
cython_0
murmurhash
numpy
preshed
setuptools
];
buildInputs = [
blas
];
dependencies = [
blis
catalogue
confection
cymem
murmurhash
numpy
preshed
pydantic
srsly
wasabi
];
nativeCheckInputs = [
hypothesis
mock
pytestCheckHook
];
preCheck = ''
# avoid local paths, relative imports wont resolve correctly
mv thinc/tests tests
rm -r thinc
'';
pythonImportsCheck = [ "thinc" ];
meta = {
description = "Library for NLP machine learning";
homepage = "https://github.com/explosion/thinc";
changelog = "https://github.com/explosion/thinc/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ aborsu ];
};
}
|