python3Packages.stanza: 1.12.2 -> 1.13.0
Changelog: https://github.com/stanfordnlp/stanza/releases/tag/v1.13.0 This release uses huggingface-hub to download models instead of downloading them over HTTP with the requests library, hence the new dependency (note: huggingface-hub is already a transitive dependency of this package via peft).
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
setuptools,
|
||||
# dependencies
|
||||
emoji,
|
||||
huggingface-hub,
|
||||
networkx,
|
||||
numpy,
|
||||
peft,
|
||||
@@ -20,20 +21,21 @@
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "stanza";
|
||||
version = "1.12.2";
|
||||
version = "1.13.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "stanfordnlp";
|
||||
repo = "stanza";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-hUI8sZDwBK8ZRS9asyDiTqpoIGnGbHeH/Q9i/gasut0=";
|
||||
hash = "sha256-+quLNaxaGCUpsg3PH11nEMeKjIoHsKaBqK4FdIHlaMM=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
emoji
|
||||
huggingface-hub
|
||||
networkx
|
||||
numpy
|
||||
peft
|
||||
|
||||
Reference in New Issue
Block a user