summaryrefslogtreecommitdiff
path: root/gnu/packages/python-crypto.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-28 10:25:26 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-28 12:06:19 +0000
commita20e0f6f939224b8723cc36e88358ead7f65b041 (patch)
tree4d1ccc8f2e79c0a94fa0757b3c23e0ecefd8ae9c /gnu/packages/python-crypto.scm
parent74da72f4914a737ba1ef227f5d93dbf16d91bc29 (diff)
gnu: Add python-pycryptodome-test-vectors.
* gnu/packages/python-crypto.scm (python-pycryptodome-test-vectors): New variable. Change-Id: I8e99ee01a6bca15a6f5bca6494eaf5efac209a5d
Diffstat (limited to 'gnu/packages/python-crypto.scm')
-rw-r--r--gnu/packages/python-crypto.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 1a7664a7fbb..5e4f2f9aab2 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1024,6 +1024,28 @@ PyCryptodome variants, the other being python-pycryptodomex.")
(license (list license:bsd-2
license:public-domain)))) ; code inherited from PyCrypto
+(define-public python-pycryptodome-test-vectors
+ (package
+ (name "python-pycryptodome-test-vectors")
+ (version "1.0.22")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pycryptodome_test_vectors" version))
+ (sha256
+ (base32 "19bn19fpnkj39nki2dp8k26is5fpqa3q7agkhk9rvfqfvzvgx3nn"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;no tests
+ (native-inputs
+ (list python-setuptools))
+ (home-page "https://www.pycryptodome.org")
+ (synopsis "Test vectors for PyCryptodome")
+ (description
+ "This package provides test vectors for @code{PyCryptodome}.")
+ (license (list license:bsd-2
+ license:asl2.0))))
+
(define-public python-pycryptodomex
(package (inherit python-pycryptodome)
(name "python-pycryptodomex")