82 lines
1.3 KiB
Nix
82 lines
1.3 KiB
Nix
{ stdenv
|
|
, pkgs
|
|
, buildPythonPackage
|
|
, python
|
|
, fetchPypi
|
|
, html5lib
|
|
, pytest
|
|
, cython
|
|
, preshed
|
|
, ftfy
|
|
, numpy
|
|
, murmurhash
|
|
, plac
|
|
, six
|
|
, ujson
|
|
, dill
|
|
, requests
|
|
, thinc
|
|
, pip
|
|
, regex
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "spacy";
|
|
version = "2.0.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1ihkhflhyz67bp73kfjqfrbcgdxi2msz5asbrh0pkk590c4vmms5";
|
|
};
|
|
|
|
prePatch = ''
|
|
substituteInPlace setup.py --replace \
|
|
"'html5lib==1.0b8'," \
|
|
"'html5lib',"
|
|
|
|
substituteInPlace setup.py --replace \
|
|
"'regex==2017.4.5'," \
|
|
"'regex',"
|
|
|
|
substituteInPlace setup.py --replace \
|
|
"'ftfy==2017.4.5'," \
|
|
"'ftfy',"
|
|
|
|
substituteInPlace setup.py --replace \
|
|
"'pathlib'," \
|
|
"\"pathlib; python_version<'3.4'\","
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
cython
|
|
dill
|
|
html5lib
|
|
murmurhash
|
|
numpy
|
|
plac
|
|
preshed
|
|
regex
|
|
requests
|
|
six
|
|
thinc
|
|
ujson
|
|
ftfy
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest
|
|
];
|
|
|
|
doCheck = false;
|
|
# checkPhase = ''
|
|
# ${python.interpreter} -m pytest spacy/tests --vectors --models --slow
|
|
# '';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython";
|
|
homepage = https://github.com/explosion/spaCy;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sdll ];
|
|
};
|
|
}
|