19 buildPythonPackage rec {
22 format = "setuptools";
24 disabled = pythonOlder "3.8";
26 src = fetchFromGitHub {
27 owner = "stanfordnlp";
29 rev = "refs/tags/v${version}";
30 hash = "sha256-hrRn6ITsN7kFL1T6VjSXPDytANEeJYKwMaSdCG+YJyM=";
33 propagatedBuildInputs = [
47 # Tests require network access
50 pythonImportsCheck = [ "stanza" ];
53 description = "Official Stanford NLP Python Library for Many Human Languages";
54 homepage = "https://github.com/stanfordnlp/stanza/";
55 changelog = "https://github.com/stanfordnlp/stanza/releases/tag/v${version}";
56 license = licenses.asl20;
57 maintainers = with maintainers; [ riotbib ];