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

commit e77efae0281dc006720876475d008c275f68bc5f
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Sep 21 12:44:04 2025 +0200

    gnu: python-axolotl-curve25519: Fix tests.
    
    * gnu/packages/python-crypto.scm (python-axolotl-curve25519)
    [arguments]<#:test-backend>: Set it.
    [native-inputs]: Remove python-wheel.
    
    Change-Id: Iea4a3f9254b088a6c0766d3458de3e9496b425b6
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-crypto.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 6b0270a2c6..84ae9d3a13 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -646,15 +646,16 @@ OpenSSL library.")
         (base32
          "18v3rfyv7xi26fb97nw1xc0l6x8wi0i4xj8dlq4gblpbjxiac187"))))
     (build-system pyproject-build-system)
-    (native-inputs (list python-setuptools python-wheel))
     (arguments
      (list
+      #:test-backend #~'unittest
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'unpack 'relax-gcc-14-strictness
             (lambda _
               (setenv "CFLAGS"
                       (string-append "-g -O2 -Wno-error=int-conversion")))))))
+    (native-inputs (list python-setuptools))
     (home-page "https://github.com/tgalal/python-axolotl-curve25519";)
     (synopsis "Python wrapper for curve25519 library")
     (description "This is a python wrapper for the curve25519 library

Reply via email to