60 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
emoji,
fetchFromGitHub,
networkx,
numpy,
peft,
protobuf,
pythonOlder,
requests,
six,
toml,
torch,
tqdm,
transformers,
}:
buildPythonPackage rec {
pname = "stanza";
version = "1.10.1";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "stanfordnlp";
repo = "stanza";
tag = "v${version}";
hash = "sha256-0uqEyiY+gX9P2r2H+qF4t8OUUumjikBZjk4psFf9l30=";
};
propagatedBuildInputs = [
emoji
networkx
numpy
peft
protobuf
requests
six
toml
torch
tqdm
transformers
];
# Tests require network access
doCheck = false;
pythonImportsCheck = [ "stanza" ];
meta = with lib; {
description = "Official Stanford NLP Python Library for Many Human Languages";
homepage = "https://github.com/stanfordnlp/stanza/";
changelog = "https://github.com/stanfordnlp/stanza/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ riotbib ];
};
}