nixpkgs/pkgs/development/python-modules/spacy/default.nix

78 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
2017-05-15 10:09:39 +00:00
, buildPythonPackage
, fetchPypi
, pythonOlder
2018-03-13 23:02:00 +00:00
, html5lib
, 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
, regex
, cymem
, pathlib
, msgpack-python
, msgpack-numpy
2017-05-15 10:09:39 +00:00
}:
buildPythonPackage rec {
pname = "spacy";
2018-07-22 10:21:28 +00:00
version = "2.0.12";
2017-05-15 10:09:39 +00:00
2018-03-13 23:02:00 +00:00
src = fetchPypi {
inherit pname version;
2018-07-22 10:21:28 +00:00
sha256 = "b220ebee412c19613c26b2c1870b60473834bd686cec49553ce5f184164d3359";
};
2017-05-15 10:09:39 +00:00
2018-03-13 23:02:00 +00:00
prePatch = ''
substituteInPlace setup.py \
--replace "html5lib==" "html5lib>=" \
--replace "regex==" "regex>=" \
--replace "ftfy==" "ftfy>=" \
--replace "msgpack-python==" "msgpack-python>=" \
--replace "msgpack-numpy==" "msgpack-numpy>=" \
2018-09-05 06:38:52 +00:00
--replace "thinc>=6.10.3,<6.11.0" "thinc>=6.10.3" \
--replace "plac<1.0.0,>=0.9.6" "plac>=0.9.6"
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
murmurhash
cymem
2018-03-13 23:02:00 +00:00
preshed
thinc
plac
six
html5lib
2017-05-15 10:09:39 +00:00
ujson
dill
requests
regex
2017-05-15 10:09:39 +00:00
ftfy
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
# '';
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 ];
};
}