guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: Add python-ecpy.


From: Danny Milosavljevic
Subject: 03/03: gnu: Add python-ecpy.
Date: Mon, 25 Dec 2017 18:01:45 -0500 (EST)

dannym pushed a commit to branch master
in repository guix.

commit d0d5f7268805ea1a15ac8a74ce566731ff3209aa
Author: Danny Milosavljevic <address@hidden>
Date:   Sun Dec 24 03:00:20 2017 +0100

    gnu: Add python-ecpy.
    
    * gnu/packages/python-crypto.scm (python-ecpy, python2-ecpy): New variables.
---
 gnu/packages/python-crypto.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 9a7b0c7..4f06d7e 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -655,3 +655,26 @@ Certificate (DER encoded, PEM encoded), RSA PEM (encoded 
private key, public
 key), SSH public key, ASC-encoded OpenPGP key, APK Android application, LDIFF
 file, and more.")
     (license license:gpl3)))
+
+(define-public python-ecpy
+  (package
+    (name "python-ecpy")
+    (version "0.8.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "ECPy" version))
+        (sha256
+          (base32
+            "090fqnj8z0xm44jrfpll7j45r68m6kp7mjr7yxzg93j42h3sj285"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-future" ,python-future)))
+    (home-page "https://github.com/ubinity/ECPy";)
+    (synopsis "Pure Python Elliptic Curve Library")
+    (description "This package provides a Elliptic Curve Library in pure
+Python.")
+    (license license:asl2.0)))
+
+(define-public python2-ecpy
+  (package-with-python2 python-ecpy))



reply via email to

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