guix-devel
[Top][All Lists]
Advanced

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

[PATCH 23/31] gnu: Add python-oauthlib.


From: David Thompson
Subject: [PATCH 23/31] gnu: Add python-oauthlib.
Date: Fri, 5 Sep 2014 11:18:29 -0400

* gnu/packages/python.scm (python-oauthlib, python2-oauthlib): New variables.
---
 gnu/packages/python.scm | 52 +++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 50 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 886dc03..6c6fdb5 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1613,7 +1613,7 @@ somewhat intelligeble.")
             "0g0ayql5b9mkjam8hym6zyg6bv77lbh66rv1fyvgqb17kfc1xkpj"))))
     (build-system python-build-system)
     (inputs
-     `(("python" ,python) ;; need libpython3.3m
+     `(("python" ,python) ; need libpython3.3m
        ("python-setuptools" ,python-setuptools)
        ("gmp" ,gmp)))
     (arguments
@@ -1624,9 +1624,57 @@ somewhat intelligeble.")
                  %standard-phases)))
     (home-page "http://www.pycrypto.org/";)
     (synopsis "Cryptographic modules for Python.")
-    (description "Cryptographic modules for Python.")
+    (description "Pycrypto is a collection of both secure hash functions (such
+as SHA256 and RIPEMD160), and various encryption algorithms (AES, DES, RSA,
+ElGamal, etc.).")
     (license public-domain)))
 
 (define-public python2-pycrypto
   (package-with-python2 python-pycrypto))
 
+(define-public python-oauthlib
+  (package
+    (name "python-oauthlib")
+    (version "0.6.3")
+    (source (origin
+              (method url-fetch)
+              (uri
+               (string-append
+                "https://pypi.python.org/packages/source/o/oauthlib/oauthlib-";
+                version ".tar.gz"))
+              (sha256
+               (base32
+                "1yaj3j64la4arwsbhbfmpnickzh3jpg9nlpyg409v8pp24isn48a"))))
+    (build-system python-build-system)
+    (inputs
+     `(("python-setuptools" ,python-setuptools)
+       ("python-pyjwt" ,python-pyjwt)
+       ("python-pycrypto" ,python-pycrypto)
+       ("python-nose" ,python-nose)
+       ("python-mock" ,python-mock)))
+    (home-page "https://github.com/idan/oauthlib";)
+    (synopsis "OAuth implementation for Python")
+    (description
+     "Oauthlib is a generic, spec-compliant, thorough implementation of the
+OAuth request-signing logic.")
+    (license bsd-3)))
+
+(define-public python2-oauthlib
+  (let ((base (package-with-python2 python-oauthlib)))
+    (package
+      (inherit base)
+      (name "python2-oauthlib")
+      (version "0.6.3")
+      (source (origin
+                (method url-fetch)
+                (uri
+                 (string-append
+                  
"https://pypi.python.org/packages/source/o/oauthlib/oauthlib-";
+                  version ".tar.gz"))
+                (sha256
+                 (base32
+                  "1yaj3j64la4arwsbhbfmpnickzh3jpg9nlpyg409v8pp24isn48a"))))
+      (inputs
+       (append (package-inputs base)
+               `(("python2-unittest2" ,python2-unittest2)))))))
+
-- 
2.0.1




reply via email to

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