summaryrefslogtreecommitdiff
path: root/gnu/packages/python-crypto.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-27 21:52:16 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-27 21:57:47 +0100
commit52081ff06b1fbeeaae41c320964d172ff5ab6e1a (patch)
tree97d048ba12875d490f7844eca517e0d6cc5e1afe /gnu/packages/python-crypto.scm
parent0a0f1e30a85ffda9f606cf07c3747656d8c37d8a (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
Diffstat (limited to 'gnu/packages/python-crypto.scm')
-rw-r--r--gnu/packages/python-crypto.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 32b9f17aaa7..b20bec061fd 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1771,6 +1771,7 @@ in different situations.
1771@end enumerate") 1771@end enumerate")
1772 (license license:expat))) 1772 (license license:expat)))
1773 1773
1774;; XXX: Not maintained since 2016.
1774(define-public python-pydes 1775(define-public python-pydes
1775 (package 1776 (package
1776 (name "python-pydes") 1777 (name "python-pydes")
@@ -1782,8 +1783,10 @@ in different situations.
1782 (sha256 1783 (sha256
1783 (base32 "04lh71f47y04vspfrdrq6a0hn060ibxvdp5z1pcr0gmqs8hqxaz2")))) 1784 (base32 "04lh71f47y04vspfrdrq6a0hn060ibxvdp5z1pcr0gmqs8hqxaz2"))))
1784 (build-system pyproject-build-system) 1785 (build-system pyproject-build-system)
1785 (native-inputs (list python-setuptools python-wheel)) 1786 (arguments
1786 (home-page "http://twhiteman.netfirms.com/des.html") 1787 (list #:tests? #f)) ;no tests in PyPI, I could not fine Git
1788 (native-inputs (list python-setuptools))
1789 (home-page "http://twhiteman.netfirms.com/des.html") ;XXX: Dead link
1787 (synopsis 1790 (synopsis
1788 "Pure python implementation of the DES and TRIPLE DES encryption algorithms") 1791 "Pure python implementation of the DES and TRIPLE DES encryption algorithms")
1789 (description 1792 (description