Files
nixpkgs/pkgs/development/python-modules/stanza/default.nix
Martin Weinelt afe8ee8b47 python3Packages.torch{,-bin}: rename from pytorch{,-bin}
The proper name for a python package is the one in the setuptools
setup() call, which can also be seen on pypi.

Correct: https://pypi.org/project/torch/
Wrong: https://pypi.org/project/pytorch/

Includes a treewide rename of the attribute and creates aliases for the
old name.
2022-08-30 17:46:57 +02:00

50 lines
915 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, emoji
, numpy
, protobuf
, requests
, six
, torch
, tqdm
}:
buildPythonPackage rec {
pname = "stanza";
version = "1.4.0";
src = fetchFromGitHub {
owner = "stanfordnlp";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-EAES3UpJqE7wmvCPycFhwI1lMrReN+L6W8CEDwdHTlA=";
};
disabled = pythonOlder "3.6";
propagatedBuildInputs = [
emoji
numpy
protobuf
requests
six
torch
tqdm
];
# disabled, because the tests try to connect to the internet which
# is forbidden in the sandbox
doCheck = false;
pythonImportsCheck = [ "stanza" ];
meta = with lib; {
description = "Official Stanford NLP Python Library for Many Human Languages";
homepage = "https://github.com/stanfordnlp/stanza/";
license = licenses.asl20;
maintainers = with maintainers; [ riotbib ];
};
}