guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 18ad295d6cd8cd5ab02d2418985f305e97fec778
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Mon Jul 28 18:27:11 2025 +0100

    gnu: python-transaction: Update to 5.0.
    
    * gnu/packages/python-web.scm (python-transaction): Update to 5.0.
      [build-system]: Use pyproject.
      [native-inputs]: Remove python-coverage, python-mock, and python-nose;
      add python-pytest and python-setuptools.
    
    Change-Id: I4581b1994856439917cff67bcc9afb523bc5916d
---
 gnu/packages/python-web.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 43bb62b81b..3f8c3be118 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -9264,19 +9264,19 @@ conflicts detected by that mechanism.")
 (define-public python-transaction
   (package
     (name "python-transaction")
-    (version "3.0.0")
+    (version "5.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (pypi-uri "transaction" version))
-        (sha256
-         (base32
-          "0bdaks31bgfh78wnj3sij24bfysmqk25crsis6amz8kzrc0d82iv"))))
-    (build-system python-build-system)
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "transaction" version))
+       (sha256
+        (base32 "0x0i5graxb93aa8bwf5rmm9zq7d7r6q2b4pw358wph5whbbpnvhh"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-pytest
+           python-setuptools))
     (propagated-inputs
      (list python-zope-interface))
-    (native-inputs
-     (list python-coverage python-mock python-nose))
     (home-page "https://github.com/zopefoundation/transaction";)
     (synopsis "Transaction management for Python")
     (description "This package contains a generic transaction implementation

Reply via email to