guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 8f1e28d87159fcb63c3807625614bbf24ff154bc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jan 23 22:01:12 2026 +0000
gnu: python-kombu: Update to 5.6.2.
* gnu/packages/python-xyz.scm (python-kombu): Update to 5.6.2.
[arguments] <test-flags>: Ignore tests requiring Pyro.
[native-inputs]: Remove python-pyro4.
Change-Id: Icfe96910003d2a26813e266df7ea68da0227cede
---
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 f62a62aec8..26dd42628d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20127,7 +20127,7 @@ or compiler for Python.")
(define-public python-kombu
(package
(name "python-kombu")
- (version "5.6.0")
+ (version "5.6.2")
(source
(origin
(method git-fetch)
@@ -20136,17 +20136,20 @@ or compiler for Python.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "10h73mxfqy8g02bmibc9m2xklcm4pxc9r674c8l6j0v2igf3ycmb"))))
+ (base32 "1yglhylq1vfi43yv2q02k9kf5kwdr0xhrmghmmhyna87qd108ir7"))))
(build-system pyproject-build-system)
(arguments
(list
- ;; tests: 854 passed, 196 skipped
+ ;; tests: 854 passed, 193 skipped
#:test-flags
#~(list
;; TODO: Package azure-identity (required for this file)
"--ignore=t/unit/transport/test_azurestoragequeues.py"
;; XXX: Requires google-cloud-pubsub.
- "--ignore=t/unit/transport/test_gcpubsub.py")
+ "--ignore=t/unit/transport/test_gcpubsub.py"
+ ;; XXX: Requires pyro, see:
+ ;; <https://codeberg.org/guix/guix/issues/5857>
+ "--ignore=t/unit/transport/test_pyro.py")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'relax-requirements
@@ -20156,7 +20159,6 @@ or compiler for Python.")
"tzdata>=2025.1")))))))
(native-inputs
(list python-botocore
- python-pyro4
python-pytest
python-pytest-freezer
python-pytest-sugar