guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: Add python-certipy.


From: guix-commits
Subject: 02/03: gnu: Add python-certipy.
Date: Sun, 9 Aug 2020 08:48:40 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 5e5c695deabeb8164c86246236e9f483f837f22d
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Aug 9 15:37:28 2020 +0300

    gnu: Add python-certipy.
    
    * gnu/packages/python-crypto.scm (python-certipy): New variable.
---
 gnu/packages/python-crypto.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index c1ff92c..96837e3 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]