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

79 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
2017-05-15 10:09:39 +00:00
, pkgs
, buildPythonPackage
, python
, 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-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-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>=" \
--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
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 ];
};
}