2018-04-07 16:48:02 +02:00
|
|
|
{ lib
|
2017-05-15 12:09:39 +02:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-04-07 16:48:02 +02:00
|
|
|
, pythonOlder
|
2017-11-09 12:26:09 +01:00
|
|
|
, pytest
|
2017-05-15 12:09:39 +02:00
|
|
|
, preshed
|
2018-03-14 00:02:00 +01:00
|
|
|
, ftfy
|
2017-05-15 12:09:39 +02:00
|
|
|
, numpy
|
|
|
|
, murmurhash
|
|
|
|
, plac
|
|
|
|
, ujson
|
|
|
|
, dill
|
|
|
|
, requests
|
|
|
|
, thinc
|
2018-01-01 11:56:00 +01:00
|
|
|
, regex
|
2018-04-07 16:48:02 +02:00
|
|
|
, cymem
|
|
|
|
, pathlib
|
|
|
|
, msgpack-python
|
|
|
|
, msgpack-numpy
|
2017-05-15 12:09:39 +02:00
|
|
|
}:
|
|
|
|
|
2018-01-01 11:56:00 +01:00
|
|
|
buildPythonPackage rec {
|
2017-11-09 12:26:09 +01:00
|
|
|
pname = "spacy";
|
2018-12-15 09:29:14 +01:00
|
|
|
version = "2.0.18";
|
2017-05-15 12:09:39 +02:00
|
|
|
|
2018-03-14 00:02:00 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-12-15 09:29:14 +01:00
|
|
|
sha256 = "0mybdms7c40jvk8ak180n65anjiyg4c8gkaqwkzicrd1mxq3ngqj";
|
2017-11-09 12:26:09 +01:00
|
|
|
};
|
2017-05-15 12:09:39 +02:00
|
|
|
|
2018-03-14 00:02:00 +01:00
|
|
|
prePatch = ''
|
2018-04-07 16:34:18 +02:00
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace "regex==" "regex>=" \
|
2018-12-15 09:29:14 +01:00
|
|
|
--replace "plac<1.0.0,>=0.9.6" "plac>=0.9.6"
|
2018-03-14 00:02:00 +01:00
|
|
|
'';
|
|
|
|
|
2017-05-15 12:09:39 +02:00
|
|
|
propagatedBuildInputs = [
|
2018-03-14 00:02:00 +01:00
|
|
|
numpy
|
2018-04-07 16:48:02 +02:00
|
|
|
murmurhash
|
|
|
|
cymem
|
2018-03-14 00:02:00 +01:00
|
|
|
preshed
|
|
|
|
thinc
|
2018-04-07 16:48:02 +02:00
|
|
|
plac
|
2017-05-15 12:09:39 +02:00
|
|
|
ujson
|
2018-04-07 16:48:02 +02:00
|
|
|
dill
|
|
|
|
requests
|
|
|
|
regex
|
2017-05-15 12:09:39 +02:00
|
|
|
ftfy
|
2018-04-07 16:48:02 +02:00
|
|
|
msgpack-python
|
|
|
|
msgpack-numpy
|
|
|
|
] ++ lib.optional (pythonOlder "3.4") pathlib;
|
2018-03-14 00:02:00 +01:00
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytest
|
2017-05-15 12:09:39 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
# checkPhase = ''
|
|
|
|
# ${python.interpreter} -m pytest spacy/tests --vectors --models --slow
|
2017-11-09 12:26:09 +01:00
|
|
|
# '';
|
|
|
|
|
2018-04-07 16:48:02 +02:00
|
|
|
meta = with lib; {
|
2017-05-15 12:09:39 +02:00
|
|
|
description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython";
|
|
|
|
homepage = https://github.com/explosion/spaCy;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ sdll ];
|
|
|
|
};
|
|
|
|
}
|