summaryrefslogtreecommitdiff
path: root/gnu/packages/python-crypto.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-08-26 00:40:24 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-03 08:01:06 +0100
commitaa6126d588cd11303982485199a01976a8c24edf (patch)
tree9004b0881580b5009e33467d3a0eb87b39db0900 /gnu/packages/python-crypto.scm
parent64ac97f8c01b45add82ef9d24273e1117502464a (diff)
gnu: python-certipy: Update to 0.2.2.
* gnu/packages/python-crypto.scm (python-certipy): Update to 0.2.2. [propagated-inputs]: Replace python-pyopenssl by python-cryptography. [native-inputs]: Add python-pypa-build, python-flask. Change-Id: If2a740e90d60e88f3d0839a6c3c6fac7a70b505c Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-crypto.scm')
-rw-r--r--gnu/packages/python-crypto.scm12
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 27f3a781c0b..24b262d5ee5 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1523,16 +1523,20 @@ use in your tests.")
(define-public python-certipy
(package
(name "python-certipy")
- (version "0.1.3")
+ (version "0.2.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "certipy" version))
(sha256
- (base32 "0n980gqpzh0fm58h3i4mi2i10wgj606lscm1r5sk60vbf6vh8mv9"))))
+ (base32 "0pm0kf079ws9s93vpkxnw3gj6a1hi34p34bicx69rqlyh7cg7wgy"))))
(build-system pyproject-build-system)
- (propagated-inputs (list python-pyopenssl))
- (native-inputs (list python-pytest python-setuptools python-wheel))
+ (propagated-inputs (list python-cryptography))
+ (native-inputs (list python-pypa-build
+ python-flask
+ python-pytest
+ python-setuptools
+ python-wheel))
(home-page "https://github.com/LLNL/certipy")
(synopsis "Utility to create and sign CAs and certificates")
(description