guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 688b953153edfe593da505c69c81f619a8f620a6
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Jul 21 23:43:57 2025 +0200

    gnu: python-pyaes: Switch to pyproject.
    
    * gnu/packages/python-crypto.scm (python-pyaes)
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-setuptools, python-wheel.
    
    Change-Id: If128c432bf1359aa66fcde7da82160f30e95f181
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-crypto.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 43c781fb81..a80da0d470 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -752,6 +752,7 @@ asynchronous messaging environments.")
     (license license:gpl3)))
 
 (define-public python-pyaes
+  ;; XXX: Last updated in 2017.
   (package
     (name "python-pyaes")
     (version "1.6.1")
@@ -760,9 +761,9 @@ asynchronous messaging environments.")
        (method url-fetch)
        (uri (pypi-uri "pyaes" version))
        (sha256
-        (base32
-         "13vdaff15k0jyfcss4b4xvfgm8xyv0nrbyw5n1qc7lrqbi0b3h82"))))
-    (build-system python-build-system)
+        (base32 "13vdaff15k0jyfcss4b4xvfgm8xyv0nrbyw5n1qc7lrqbi0b3h82"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-setuptools python-wheel))
     (home-page "https://github.com/ricmoo/pyaes";)
     (synopsis "Implementation of AES in Python")
     (description "This package contains a pure-Python implementation of the

Reply via email to