2018-04-07 14:48:02 +00:00
|
|
|
{ lib
|
2017-05-15 10:09:39 +00:00
|
|
|
, pkgs
|
|
|
|
, buildPythonPackage
|
|
|
|
, python
|
|
|
|
, fetchPypi
|
2018-04-07 14:48:02 +00:00
|
|
|
, pythonOlder
|
2018-03-13 23:02:00 +00:00
|
|
|
, html5lib
|
2017-11-09 11:26:09 +00:00
|
|
|
, pytest
|
2017-05-15 10:09:39 +00:00
|
|
|
, preshed
|
2018-03-13 23:02:00 +00:00
|
|
|
, ftfy
|
2017-05-15 10:09:39 +00:00
|
|
|
, numpy
|
|
|
|
, murmurhash
|
|
|
|
, plac
|
|
|
|
, six
|
|
|
|
, ujson
|
|
|
|
, dill
|
|
|
|
, requests
|
|
|
|
, thinc
|
2018-01-01 10:56:00 +00:00
|
|
|
, regex
|
2018-04-07 14:48:02 +00:00
|
|
|
, cymem
|
|
|
|
, pathlib
|
|
|
|
, msgpack-python
|
|
|
|
, msgpack-numpy
|
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";
|
2018-03-13 23:02:00 +00:00
|
|
|
version = "2.0.9";
|
2017-05-15 10:09:39 +00:00
|
|
|
|
2018-03-13 23:02:00 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1ihkhflhyz67bp73kfjqfrbcgdxi2msz5asbrh0pkk590c4vmms5";
|
2017-11-09 11:26:09 +00:00
|
|
|
};
|
2017-05-15 10:09:39 +00:00
|
|
|
|
2018-03-13 23:02:00 +00:00
|
|
|
prePatch = ''
|
2018-04-07 14:34:18 +00:00
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace "html5lib==" "html5lib>=" \
|
|
|
|
--replace "regex==" "regex>=" \
|
|
|
|
--replace "ftfy==" "ftfy>=" \
|
|
|
|
--replace "msgpack-python==" "msgpack-python>=" \
|
|
|
|
--replace "msgpack-numpy==" "msgpack-numpy>=" \
|
|
|
|
--replace "pathlib" "pathlib; python_version<\"3.4\""
|
2018-03-13 23:02:00 +00:00
|
|
|
'';
|
|
|
|
|
2017-05-15 10:09:39 +00:00
|
|
|
propagatedBuildInputs = [
|
2018-03-13 23:02:00 +00:00
|
|
|
numpy
|
2018-04-07 14:48:02 +00:00
|
|
|
murmurhash
|
|
|
|
cymem
|
2018-03-13 23:02:00 +00:00
|
|
|
preshed
|
|
|
|
thinc
|
2018-04-07 14:48:02 +00:00
|
|
|
plac
|
|
|
|
six
|
|
|
|
html5lib
|
2017-05-15 10:09:39 +00:00
|
|
|
ujson
|
2018-04-07 14:48:02 +00:00
|
|
|
dill
|
|
|
|
requests
|
|
|
|
regex
|
2017-05-15 10:09:39 +00:00
|
|
|
ftfy
|
2018-04-07 14:48:02 +00:00
|
|
|
msgpack-python
|
|
|
|
msgpack-numpy
|
|
|
|
] ++ 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
|
|
|
# '';
|
|
|
|
|
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";
|
|
|
|
homepage = https://github.com/explosion/spaCy;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ sdll ];
|
|
|
|
};
|
|
|
|
}
|