diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-21 23:43:57 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-23 16:24:25 +0100 |
commit | 688b953153edfe593da505c69c81f619a8f620a6 (patch) | |
tree | 13919a89872236febe70b9d1208c5ffa91da8c57 | |
parent | fba83917a73ae3b92b2f88206c4520e2e7f7ced5 (diff) |
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 <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/python-crypto.scm | 7 |
1 files 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 |