guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit c0c297d6db356fdb8e10c69200cdbfdf0da0df67
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jul 28 17:43:43 2025 +0100
gnu: python-absl-py: Update to 2.3.1.
* gnu/packages/python-xyz.scm (python-absl-py): Update to 2.3.1.
[arguments] <tests?>: Tests require Bazel, disable them for now.
[native-inputs]: Remove python-setuptools and python-wheel; add
python-hatchling.
Change-Id: Iae112845d901067e1033fcfe5a29e5dbb81ab75b
---
gnu/packages/python-xyz.scm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index acdf559a60..b4b1d8d3e5 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30863,16 +30863,18 @@ RFC 8265 and RFC 8266.")
(define-public python-absl-py
(package
(name "python-absl-py")
- (version "1.4.0")
+ (version "2.3.1")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "absl-py" version))
+ (uri (pypi-uri "absl_py" version))
(sha256
- (base32
- "0ga3b0m8lfsv1m3260p83lhis52yvz3d42q8gip4gfj823849hnj"))))
+ (base32 "1jbzyyrmvmqwnyh053hdmh6q851sbvrg70yf3gnd5gvzdx920y59"))))
(build-system pyproject-build-system)
- (native-inputs (list python-setuptools python-wheel))
+ (arguments
+ (list #:tests? #f)) ;tests require bazel
+ (native-inputs
+ (list python-hatchling))
(home-page "https://github.com/abseil/abseil-py")
(synopsis "Abseil Python common libraries")
(description