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
This commit is contained in:
Sharlatan Hellseher 2025-09-27 21:52:16 +01:00
parent 0a0f1e30a8
commit 52081ff06b
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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