guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: python-kombu: Update to 5.3.6.


From: guix-commits
Subject: 02/04: gnu: python-kombu: Update to 5.3.6.
Date: Fri, 29 Mar 2024 15:36:57 -0400 (EDT)

monego pushed a commit to branch master
in repository guix.

commit 905a3061020eee1bd70bbb16f705e845fa93b0a8
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Sat Mar 23 19:39:30 2024 -0300

    gnu: python-kombu: Update to 5.3.6.
    
    * gnu/packages/python-xyz.scm (python-kombu): Update to 5.3.6.
    [build-system]: Use pyproject-build-system.
    [arguments]: Do not override the check phase. Ignore a file in #:test-flags.
    [native-inputs]: Add python-botocore, python-tzdata. Remove python-pytz.
    [propagated-inputs]: Add python-typing-extensions. Remove
    python-cached-property.
    
    Change-Id: I4b36effff8b17af388d56c90bf8983954adf4333
---
 gnu/packages/python-xyz.scm | 29 +++++++++++++----------------
 1 file changed, 13 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 45f3c91adb..ef23359fa7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19048,30 +19048,27 @@ applications.")
 (define-public python-kombu
   (package
     (name "python-kombu")
-    (version "5.2.4")
+    (version "5.3.6")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "kombu" version))
        (sha256
-        (base32 "044ng79gj04668kf5fmy7fjkw8302xyapskkn65ym52zfbpf7kip"))))
-    (build-system python-build-system)
+        (base32 "1n9i4hj1h3aivgy82l7accyjh1rqn20am00152l5syhl19bmpnpk"))))
+    (build-system pyproject-build-system)
     (arguments
-     (list
-      #:phases
-      #~(modify-phases %standard-phases
-          (replace 'check
-            (lambda* (#:key tests? #:allow-other-keys)
-              (when tests?
-                (invoke "pytest" "-vv"
-                        ;; The transport tests attempt to pass messages to
-                        ;; many different databases.
-                        "--ignore" "t/unit/transport")))))))
+     (list #:test-flags
+           ;; TODO: Package azure-identity (required for this file)
+           #~(list "--ignore" "t/unit/transport/test_azurestoragequeues.py")))
     (native-inputs
-     (list python-case python-pyro4 python-pytest-sugar
-           python-pytest python-pytz))
+     (list python-botocore
+           python-case
+           python-pyro4
+           python-pytest
+           python-pytest-sugar
+           python-tzdata))
     (propagated-inputs
-     (list python-amqp python-cached-property python-vine))
+     (list python-amqp python-typing-extensions python-vine))
     (home-page "https://kombu.readthedocs.io";)
     (synopsis "Message passing library for Python")
     (description "The aim of Kombu is to make messaging in Python as easy as



reply via email to

[Prev in Thread] Current Thread [Next in Thread]