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

76 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
2017-05-15 12:09:39 +02:00
, buildPythonPackage
, fetchPypi
, pythonOlder
, 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
, ujson
, dill
, requests
, thinc
, regex
, cymem
, pathlib
, msgpack-python
, msgpack-numpy
, jsonschema
, blis
, wasabi
, srsly
2017-05-15 12:09:39 +02:00
}:
buildPythonPackage rec {
pname = "spacy";
version = "2.1.8";
2017-05-15 12:09:39 +02:00
2018-03-14 00:02:00 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "1dja0crbai2n1l19m0hkv2fkj9r6zzy5ijd6dffp60v7lrch8lcw";
};
2017-05-15 12:09:39 +02:00
2018-03-14 00:02:00 +01:00
prePatch = ''
substituteInPlace setup.py \
--replace "plac<1.0.0,>=0.9.6" "plac>=0.9.6"
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
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
jsonschema
blis
wasabi
srsly
] ++ 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; [ danieldk sdll ];
2017-05-15 12:09:39 +02:00
};
}