me
/
guix
Archived
1
0
Fork 0

gnu: Add python-certipy.

* gnu/packages/python-crypto.scm (python-certipy): New variable.
master
Efraim Flashner 2020-08-09 15:37:28 +03:00
parent ab04b25717
commit 5e5c695dea
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 24 additions and 0 deletions

View File

@ -1387,6 +1387,30 @@ use in your tests.")
;; Either license applies.
(license (list license:expat license:asl2.0))))
(define-public python-certipy
(package
(name "python-certipy")
(version "0.1.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "certipy" version))
(sha256
(base32
"0n980gqpzh0fm58h3i4mi2i10wgj606lscm1r5sk60vbf6vh8mv9"))))
(build-system python-build-system)
(propagated-inputs
`(("python-pyopenssl" ,python-pyopenssl)))
(native-inputs
`(("python-pytest" ,python-pytest)))
(home-page "https://github.com/LLNL/certipy")
(synopsis "Utility to create and sign CAs and certificates")
(description
"Certipy was made to simplify the certificate creation process. To that
end, certipy exposes methods for creating and managing certificate authorities,
certificates, signing and building trust bundles.")
(license license:bsd-3)))
(define-public python-jeepney
(package
(name "python-jeepney")