guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add python-pyasn1.


From: Ricardo Wurmus
Subject: 01/01: gnu: Add python-pyasn1.
Date: Thu, 24 Sep 2015 18:08:42 +0000

rekado pushed a commit to branch master
in repository guix.

commit 7a8ac75a947f2cd2863f9b9d490d3e284fbef701
Author: Ricardo Wurmus <address@hidden>
Date:   Mon Sep 21 22:43:24 2015 +0200

    gnu: Add python-pyasn1.
    
    * gnu/packages/python.scm (python-pyasn1, python2-pyasn1): New
      variables.
---
 gnu/packages/python.scm |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 9de366f..40d31a7 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4916,3 +4916,26 @@ printing of sub-tables by specifying a row range.")
 
 (define-public python2-prettytable
   (package-with-python2 python-prettytable))
+
+(define-public python-pyasn1
+  (package
+    (name "python-pyasn1")
+    (version "0.1.8")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://pypi.python.org/packages/source/p/";
+                           "pyasn1/pyasn1-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0iw31d9l0zwx35szkzq72hiw002wnqrlrsi9dpbrfngcl1ybwcsx"))))
+    (build-system python-build-system)
+    (home-page "http://pyasn1.sourceforge.net/";)
+    (synopsis "ASN.1 types and codecs")
+    (description
+     "This is an implementation of ASN.1 types and codecs in Python.  It is
+suitable for a wide range of protocols based on the ASN.1 specification.")
+    (license bsd-2)))
+
+(define-public python2-pyasn1
+  (package-with-python2 python-pyasn1))



reply via email to

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