guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 2b61c7decb31c98a5d91d7c79ba82623dc304a73
Author: Vinicius Monego <[email protected]>
AuthorDate: Sat Jun 21 16:43:08 2025 -0300

    gnu: python-gmpy2: Update to 2.2.1.
    
    * gnu/packages/sagemath.scm (python-gmpy2): Update to 2.2.1.
    [build-system]: Use pyproject-build-system.
    [native-inputs]: Remove unzip. Add python-pytest, python-setuptools,
    python-wheel.
    
    Change-Id: Ifb42437498034627085211b523a6e1d2a200d91d
---
 gnu/packages/sagemath.scm | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/sagemath.scm b/gnu/packages/sagemath.scm
index 3f439bdad0..678cb1f7fc 100644
--- a/gnu/packages/sagemath.scm
+++ b/gnu/packages/sagemath.scm
@@ -216,17 +216,16 @@ but it can be used independently.")
 (define-public python-gmpy2
   (package
     (name "python-gmpy2")
-    (version "2.1.2")
+    (version "2.2.1")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "gmpy2" version))
        (sha256
         (base32
-         "1lc29g3s4z5f1qbsc2x9i9sf6wrpni9pwiwmb1wwx3hjr85i8xfs"))))
-    (build-system python-build-system)
-    (native-inputs
-     (list unzip))
+         "0ch4cnbgnxifcbvkxsc7m5ylxsagrjrhr4a4fnw8rds1fib0fgp8"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-pytest python-setuptools python-wheel))
     (inputs
      (list gmp mpfr mpc))
     (home-page "https://github.com/aleaxit/gmpy";)

Reply via email to