diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-23 12:11:28 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:58 +0100 |
| commit | 10607db36174472c6366ecbdeacfecc57913189c (patch) | |
| tree | 5e27c4951b458246297d2c7ea50d8e21d5a4a23e | |
| parent | 6941116fa54073dfdfaefd50a5454bfb6bb205fc (diff) | |
gnu: python-pyaes: Disable tests.
* gnu/packages/python-crypto.scm (python-pyaes)[arguments] <tests?>:
Disable for now.
[native-inputs]: Remove python-wheel.
Change-Id: I6b1be9e4dab156ed36ddb2a57b080824f6388f11
| -rw-r--r-- | gnu/packages/python-crypto.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index f4d8a7819c..32b9f17aaa 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -734,7 +734,9 @@ environments.") (sha256 (base32 "13vdaff15k0jyfcss4b4xvfgm8xyv0nrbyw5n1qc7lrqbi0b3h82")))) (build-system pyproject-build-system) - (native-inputs (list python-setuptools python-wheel)) + (arguments + (list #:tests? #f)) ;no tests in PyPI + (native-inputs (list python-setuptools)) (home-page "https://github.com/ricmoo/pyaes") (synopsis "Implementation of AES in Python") (description "This package contains a pure-Python implementation of the |
