python3Packages.transformers: 4.54.1 -> 4.55.0 (#431281)

This commit is contained in:
Yt 2025-08-05 20:32:43 -04:00 committed by GitHub
commit 9e8350dc0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -59,14 +59,14 @@
buildPythonPackage rec {
pname = "transformers";
version = "4.54.1";
version = "4.55.0";
pyproject = true;
src = fetchFromGitHub {
owner = "huggingface";
repo = "transformers";
tag = version;
hash = "sha256-xrFSz7ZmB4qjqeBk0fFiIE+LwxJ0+yQwictkGOuBgdk=";
tag = "v${version}";
hash = "sha256-dS9Xb8y/s+YpNDo6H0kO8X61C/K+SlCBLzW1JOzF4Uk=";
};
build-system = [ setuptools ];