diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-27 21:52:16 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-27 21:57:47 +0100 |
| commit | 52081ff06b1fbeeaae41c320964d172ff5ab6e1a (patch) | |
| tree | 97d048ba12875d490f7844eca517e0d6cc5e1afe | |
| parent | 0a0f1e30a85ffda9f606cf07c3747656d8c37d8a (diff) | |
gnu: python-pydes: Disable tests.
Project is not maintained since 2016, this change fix check phase by
skipping tests. Web search leads to <https://github.com/twhiteman/pyDes>
repository, while home-page URL is a dead link.
* gnu/packages/python-crypto.scm (python-pydes)[arguments] <tests?>: No
tests in PyPI, I could not find Git.
[native-inputs]: Remove python-wheel.
Change-Id: Icd47c0012dc1d2bab68d7f287e5f1af0254dae2b
| -rw-r--r-- | gnu/packages/python-crypto.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 32b9f17aaa..b20bec061f 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -1771,6 +1771,7 @@ in different situations. @end enumerate") (license license:expat))) +;; XXX: Not maintained since 2016. (define-public python-pydes (package (name "python-pydes") @@ -1782,8 +1783,10 @@ in different situations. (sha256 (base32 "04lh71f47y04vspfrdrq6a0hn060ibxvdp5z1pcr0gmqs8hqxaz2")))) (build-system pyproject-build-system) - (native-inputs (list python-setuptools python-wheel)) - (home-page "http://twhiteman.netfirms.com/des.html") + (arguments + (list #:tests? #f)) ;no tests in PyPI, I could not fine Git + (native-inputs (list python-setuptools)) + (home-page "http://twhiteman.netfirms.com/des.html") ;XXX: Dead link (synopsis "Pure python implementation of the DES and TRIPLE DES encryption algorithms") (description |
