mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
127 lines
2.1 KiB
Nix
127 lines
2.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, blis
|
|
, buildPythonPackage
|
|
, callPackage
|
|
, catalogue
|
|
, cymem
|
|
, fetchPypi
|
|
, jinja2
|
|
, jsonschema
|
|
, langcodes
|
|
, murmurhash
|
|
, numpy
|
|
, packaging
|
|
, pathy
|
|
, preshed
|
|
, pydantic
|
|
, pytest
|
|
, python
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, requests
|
|
, setuptools
|
|
, spacy-legacy
|
|
, spacy-loggers
|
|
, srsly
|
|
, thinc
|
|
, tqdm
|
|
, typer
|
|
, typing-extensions
|
|
, wasabi
|
|
, weasel
|
|
, writeScript
|
|
, nix
|
|
, git
|
|
, nix-update
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "spacy";
|
|
version = "3.7.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-mSZQKPvcbhIknFMwXkYfeaEDY3sOaGbCivDkY2X3UeE=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"typer"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
blis
|
|
catalogue
|
|
cymem
|
|
jinja2
|
|
jsonschema
|
|
langcodes
|
|
murmurhash
|
|
numpy
|
|
packaging
|
|
pathy
|
|
preshed
|
|
pydantic
|
|
requests
|
|
setuptools
|
|
spacy-legacy
|
|
spacy-loggers
|
|
srsly
|
|
thinc
|
|
tqdm
|
|
typer
|
|
wasabi
|
|
weasel
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
typing-extensions
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace "thinc>=8.1.8,<8.2.0" "thinc>=8.1.8"
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytest
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} -m pytest spacy/tests --vectors --models --slow
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"spacy"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = writeScript "update-spacy" ''
|
|
#!${stdenv.shell}
|
|
set -eou pipefail
|
|
PATH=${lib.makeBinPath [ nix git nix-update ]}
|
|
|
|
nix-update python3Packages.spacy
|
|
|
|
# update spacy models as well
|
|
echo | nix-shell maintainers/scripts/update.nix --argstr package python3Packages.spacy_models.en_core_web_sm
|
|
'';
|
|
tests.annotation = callPackage ./annotation-test { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Industrial-strength Natural Language Processing (NLP)";
|
|
homepage = "https://github.com/explosion/spaCy";
|
|
changelog = "https://github.com/explosion/spaCy/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|