depot/third_party/nixpkgs/pkgs/development/python-modules/stanza/default.nix

61 lines
1 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, emoji
, fetchFromGitHub
, networkx
, numpy
, peft
, protobuf
, pythonOlder
, requests
, six
, toml
, torch
, tqdm
, transformers
}:
buildPythonPackage rec {
pname = "stanza";
version = "1.8.2";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "stanfordnlp";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-twgMWKWUvhnGNqQ42MOptnikdSBiDFpiMCI2RPo+3XU=";
};
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 ];
};
}