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

84 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
2017-05-15 10:09:39 +00:00
, buildPythonPackage
, callPackage
2017-05-15 10:09:39 +00:00
, fetchPypi
, pythonOlder
, pytest
, blis
, catalogue
, cymem
, jinja2
, jsonschema
2017-05-15 10:09:39 +00:00
, murmurhash
, numpy
, pathlib
, preshed
2017-05-15 10:09:39 +00:00
, requests
, setuptools
, srsly
, spacy-legacy
2017-05-15 10:09:39 +00:00
, thinc
, typer
, wasabi
, packaging
, pathy
, pydantic
2017-05-15 10:09:39 +00:00
}:
buildPythonPackage rec {
pname = "spacy";
version = "3.0.6";
2017-05-15 10:09:39 +00:00
2018-03-13 23:02:00 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-ViirifH1aAmciAsSqcN/Ts4pq4kmBmDP33KMAnEYecU=";
};
2017-05-15 10:09:39 +00:00
propagatedBuildInputs = [
2020-12-12 10:37:25 +00:00
blis
catalogue
cymem
jinja2
2020-12-12 10:37:25 +00:00
jsonschema
murmurhash
numpy
preshed
requests
setuptools
srsly
spacy-legacy
2020-12-12 10:37:25 +00:00
thinc
wasabi
packaging
pathy
pydantic
typer
] ++ 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
# '';
postPatch = ''
substituteInPlace setup.cfg \
--replace "blis>=0.4.0,<0.8.0" "blis>=0.4.0,<1.0" \
--replace "pydantic>=1.7.1,<1.8.0" "pydantic>=1.7.1,<1.8.3"
'';
pythonImportsCheck = [ "spacy" ];
passthru.tests.annotation = callPackage ./annotation-test { };
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";
2017-05-15 10:09:39 +00:00
license = licenses.mit;
maintainers = with maintainers; [ sdll ];
};
2017-05-15 10:09:39 +00:00
}