2018-04-07 14:48:02 +00:00
|
|
|
{ lib
|
2017-05-15 10:09:39 +00:00
|
|
|
, buildPythonPackage
|
2020-08-18 17:38:43 +00:00
|
|
|
, callPackage
|
2017-05-15 10:09:39 +00:00
|
|
|
, fetchPypi
|
2018-04-07 14:48:02 +00:00
|
|
|
, pythonOlder
|
2017-11-09 11:26:09 +00:00
|
|
|
, pytest
|
2020-03-13 14:40:50 +00:00
|
|
|
, blis
|
|
|
|
, catalogue
|
|
|
|
, cymem
|
2021-05-07 21:32:50 +00:00
|
|
|
, jinja2
|
2020-03-13 14:40:50 +00:00
|
|
|
, jsonschema
|
2017-05-15 10:09:39 +00:00
|
|
|
, murmurhash
|
2020-03-13 14:40:50 +00:00
|
|
|
, numpy
|
|
|
|
, pathlib
|
|
|
|
, preshed
|
2017-05-15 10:09:39 +00:00
|
|
|
, requests
|
2020-03-13 14:40:50 +00:00
|
|
|
, setuptools
|
|
|
|
, srsly
|
2021-05-07 21:04:10 +00:00
|
|
|
, spacy-legacy
|
2017-05-15 10:09:39 +00:00
|
|
|
, thinc
|
2021-05-18 07:38:46 +00:00
|
|
|
, typer
|
2019-05-11 13:31:31 +00:00
|
|
|
, wasabi
|
2021-05-07 21:32:50 +00:00
|
|
|
, packaging
|
|
|
|
, pathy
|
|
|
|
, pydantic
|
2017-05-15 10:09:39 +00:00
|
|
|
}:
|
|
|
|
|
2018-01-01 10:56:00 +00:00
|
|
|
buildPythonPackage rec {
|
2017-11-09 11:26:09 +00:00
|
|
|
pname = "spacy";
|
2021-05-18 07:38:46 +00:00
|
|
|
version = "3.0.6";
|
2017-05-15 10:09:39 +00:00
|
|
|
|
2018-03-13 23:02:00 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-05-18 07:38:46 +00:00
|
|
|
hash = "sha256-ViirifH1aAmciAsSqcN/Ts4pq4kmBmDP33KMAnEYecU=";
|
2017-11-09 11:26:09 +00:00
|
|
|
};
|
2017-05-15 10:09:39 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2020-12-12 10:37:25 +00:00
|
|
|
blis
|
|
|
|
catalogue
|
|
|
|
cymem
|
2021-05-07 21:32:50 +00:00
|
|
|
jinja2
|
2020-12-12 10:37:25 +00:00
|
|
|
jsonschema
|
|
|
|
murmurhash
|
|
|
|
numpy
|
|
|
|
preshed
|
|
|
|
requests
|
|
|
|
setuptools
|
|
|
|
srsly
|
2021-05-07 21:04:10 +00:00
|
|
|
spacy-legacy
|
2020-12-12 10:37:25 +00:00
|
|
|
thinc
|
|
|
|
wasabi
|
2021-05-07 21:32:50 +00:00
|
|
|
packaging
|
|
|
|
pathy
|
|
|
|
pydantic
|
2021-05-18 07:38:46 +00:00
|
|
|
typer
|
2018-04-07 14:48:02 +00:00
|
|
|
] ++ lib.optional (pythonOlder "3.4") pathlib;
|
2018-03-13 23:02:00 +00:00
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytest
|
2017-05-15 10:09:39 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
# checkPhase = ''
|
|
|
|
# ${python.interpreter} -m pytest spacy/tests --vectors --models --slow
|
2017-11-09 11:26:09 +00:00
|
|
|
# '';
|
|
|
|
|
2020-05-27 13:33:24 +00:00
|
|
|
postPatch = ''
|
2020-06-20 09:26:36 +00:00
|
|
|
substituteInPlace setup.cfg \
|
2020-12-12 10:35:40 +00:00
|
|
|
--replace "blis>=0.4.0,<0.8.0" "blis>=0.4.0,<1.0" \
|
2021-05-07 21:32:50 +00:00
|
|
|
--replace "pydantic>=1.7.1,<1.8.0" "pydantic>=1.7.1,<1.8.3"
|
2020-05-27 13:33:24 +00:00
|
|
|
'';
|
|
|
|
|
2020-06-20 09:26:36 +00:00
|
|
|
pythonImportsCheck = [ "spacy" ];
|
|
|
|
|
2020-12-12 10:38:39 +00:00
|
|
|
passthru.tests.annotation = callPackage ./annotation-test { };
|
2020-08-18 17:38:43 +00:00
|
|
|
|
2018-04-07 14:48:02 +00:00
|
|
|
meta = with lib; {
|
2017-05-15 10:09:39 +00:00
|
|
|
description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/explosion/spaCy";
|
2017-05-15 10:09:39 +00:00
|
|
|
license = licenses.mit;
|
2021-02-01 13:50:57 +00:00
|
|
|
maintainers = with maintainers; [ sdll ];
|
2020-06-16 15:26:11 +00:00
|
|
|
};
|
2017-05-15 10:09:39 +00:00
|
|
|
}
|