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

75 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
2017-05-15 12:09:39 +02:00
, buildPythonPackage
, fetchPypi
, pythonOlder
2018-03-14 00:02:00 +01:00
, html5lib
, 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
, six
, ujson
, dill
, requests
, thinc
, regex
, cymem
, pathlib
, msgpack-python
, msgpack-numpy
2017-05-15 12:09:39 +02:00
}:
buildPythonPackage rec {
pname = "spacy";
2018-10-20 12:18:42 +02:00
version = "2.0.16";
2017-05-15 12:09:39 +02:00
2018-03-14 00:02:00 +01:00
src = fetchPypi {
inherit pname version;
2018-10-20 12:18:42 +02:00
sha256 = "1ghgbv819ff4777904p1kzayq1dj34i7853anvg859sak59r7pj1";
};
2017-05-15 12:09:39 +02:00
2018-03-14 00:02:00 +01:00
prePatch = ''
substituteInPlace setup.py \
--replace "regex==" "regex>=" \
2018-10-20 12:18:42 +02:00
--replace "plac<1.0.0,>=0.9.6" "plac>=0.9.6" \
--replace "thinc>=6.12.0,<6.13.0" "thinc>=6.12.0" \
--replace "wheel>=0.32.0,<0.33.0" "wheel>=0.31.0"
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
murmurhash
cymem
2018-03-14 00:02:00 +01:00
preshed
thinc
plac
six
html5lib
2017-05-15 12:09:39 +02:00
ujson
dill
requests
regex
2017-05-15 12:09:39 +02:00
ftfy
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
# '';
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 ];
};
}