2018-04-07 15:48:02 +01:00
|
|
|
{ lib
|
2017-05-15 11:09:39 +01:00
|
|
|
, buildPythonPackage
|
2020-08-18 18:38:43 +01:00
|
|
|
, callPackage
|
2017-05-15 11:09:39 +01:00
|
|
|
, fetchPypi
|
2018-04-07 15:48:02 +01:00
|
|
|
, pythonOlder
|
2017-11-09 11:26:09 +00:00
|
|
|
, pytest
|
2020-03-13 14:40:50 +00:00
|
|
|
, blis
|
|
|
|
, catalogue
|
|
|
|
, cymem
|
|
|
|
, jsonschema
|
2017-05-15 11:09:39 +01:00
|
|
|
, murmurhash
|
2020-03-13 14:40:50 +00:00
|
|
|
, numpy
|
|
|
|
, pathlib
|
2017-05-15 11:09:39 +01:00
|
|
|
, plac
|
2020-03-13 14:40:50 +00:00
|
|
|
, preshed
|
2017-05-15 11:09:39 +01:00
|
|
|
, requests
|
2020-03-13 14:40:50 +00:00
|
|
|
, setuptools
|
|
|
|
, srsly
|
2017-05-15 11:09:39 +01:00
|
|
|
, thinc
|
2019-05-11 14:31:31 +01:00
|
|
|
, wasabi
|
2017-05-15 11:09:39 +01:00
|
|
|
}:
|
|
|
|
|
2018-01-01 10:56:00 +00:00
|
|
|
buildPythonPackage rec {
|
2017-11-09 11:26:09 +00:00
|
|
|
pname = "spacy";
|
2020-12-12 10:35:40 +00:00
|
|
|
version = "2.3.5";
|
2017-05-15 11:09:39 +01:00
|
|
|
|
2018-03-13 23:02:00 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-12-12 10:35:40 +00:00
|
|
|
sha256 = "315278ab60094643baecd866017c7d4cbd966efd2d517ad0e6c888edf7fa5aef";
|
2017-11-09 11:26:09 +00:00
|
|
|
};
|
2017-05-15 11:09:39 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2020-12-12 10:37:25 +00:00
|
|
|
blis
|
|
|
|
catalogue
|
|
|
|
cymem
|
|
|
|
jsonschema
|
|
|
|
murmurhash
|
|
|
|
numpy
|
|
|
|
plac
|
|
|
|
preshed
|
|
|
|
requests
|
|
|
|
setuptools
|
|
|
|
srsly
|
|
|
|
thinc
|
|
|
|
wasabi
|
2018-04-07 15:48:02 +01:00
|
|
|
] ++ lib.optional (pythonOlder "3.4") pathlib;
|
2018-03-13 23:02:00 +00:00
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytest
|
2017-05-15 11:09:39 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
# checkPhase = ''
|
|
|
|
# ${python.interpreter} -m pytest spacy/tests --vectors --models --slow
|
2017-11-09 11:26:09 +00:00
|
|
|
# '';
|
|
|
|
|
2020-05-27 14:33:24 +01:00
|
|
|
postPatch = ''
|
2020-06-20 10:26:36 +01: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" \
|
2020-06-20 10:26:36 +01:00
|
|
|
--replace "catalogue>=0.0.7,<1.1.0" "catalogue>=0.0.7,<3.0" \
|
|
|
|
--replace "plac>=0.9.6,<1.2.0" "plac>=0.9.6,<2.0" \
|
|
|
|
--replace "srsly>=1.0.2,<1.1.0" "srsly>=1.0.2,<3.0" \
|
2020-12-12 10:35:40 +00:00
|
|
|
--replace "thinc>=7.4.1,<7.5.0" "thinc>=7.4.1,<8"
|
2020-05-27 14:33:24 +01:00
|
|
|
'';
|
|
|
|
|
2020-06-20 10:26:36 +01:00
|
|
|
pythonImportsCheck = [ "spacy" ];
|
|
|
|
|
2020-12-12 10:38:39 +00:00
|
|
|
passthru.tests.annotation = callPackage ./annotation-test { };
|
2020-08-18 18:38:43 +01:00
|
|
|
|
2018-04-07 15:48:02 +01:00
|
|
|
meta = with lib; {
|
2017-05-15 11:09:39 +01:00
|
|
|
description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/explosion/spaCy";
|
2017-05-15 11:09:39 +01:00
|
|
|
license = licenses.mit;
|
2021-02-01 13:50:57 +00:00
|
|
|
maintainers = with maintainers; [ sdll ];
|
2020-06-16 16:26:11 +01:00
|
|
|
};
|
2017-05-15 11:09:39 +01:00
|
|
|
}
|