all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add python2-qrcode
@ 2016-06-14 19:26 Daniel Pimentel
  2016-06-14 19:51 ` ng0
  0 siblings, 1 reply; 14+ messages in thread
From: Daniel Pimentel @ 2016-06-14 19:26 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 53 bytes --]

Added python2-qrcode.

-- 
Daniel Pimentel (aka d4n1)

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0003-gnu-Add-python2-qrcode.patch --]
[-- Type: text/x-diff; name=0003-gnu-Add-python2-qrcode.patch, Size: 1668 bytes --]

From 3a9c7b2ed591a32ff7d8b40f1b24ee51f8350577 Mon Sep 17 00:00:00 2001
From: Daniel Pimentel <d4n1@d4n1.org>
Date: Tue, 14 Jun 2016 16:23:41 -0300
Subject: [PATCH 3/3] gnu: Add python2-qrcode

---
 gnu/packages/python.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index c9ac1f1..efdce9a 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -9058,3 +9058,29 @@ new (proposed) 2.0 spec, which includes batch submission, keyword arguments,
      "This module implements the password-based key derivation function, 
 PBKDF2, specified in RSA PKCS#5 v2.0.")
     (license license:expat)))
+
+(define-public python2-qrcode
+  (package
+    (name "python2-qrcode")
+    (version "5.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "http://pypi.python.org/packages/source/q/qrcode/qrcode-"
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "0skzrvhjnnacrz52jml4i050vdx5lfcd3np172srxjaghdgfxg9k"))))
+    (build-system python-build-system)
+    (inputs
+     `(("python2-setuptools" ,python2-setuptools)
+       ("python2-pillow" ,python2-pillow)
+       ("python2-six" ,python2-six)))    
+    (arguments
+     `(#:python ,python-2)) ; only Python 2.7 is supported
+    (home-page "https://pypi.python.org/pypi/qrcode")
+    (synopsis "Python library to generate QR Codes")
+    (description
+     "Python library that uses image libraries, Python Imaging Library (PIL) 
+by default, to generate QR Codes.")
+    (license license:expat)))
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2016-06-23 23:46 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-14 19:26 [PATCH] gnu: Add python2-qrcode Daniel Pimentel
2016-06-14 19:51 ` ng0
2016-06-14 20:00   ` [PATCH] gnu: Update python2-qrcode Daniel Pimentel
2016-06-14 21:12     ` ng0
2016-06-14 21:48       ` d4n1
2016-06-15 13:12         ` Andreas Enge
2016-06-16 12:14     ` [PATCH] gnu: Update python2-qrcode (refactored) Daniel Pimentel
2016-06-16 22:08       ` Ben Woodcroft
2016-06-17 23:40         ` [PATCH 2/2] gnu: Update python2-qrcode Daniel Pimentel
2016-06-18  5:31           ` Ben Woodcroft
2016-06-23 16:14             ` Daniel Pimentel
2016-06-23 16:41               ` [PATCH] gnu: Add python2-qrcode Daniel Pimentel
2016-06-23 23:45                 ` Ben Woodcroft
2016-06-17 23:47       ` [PATCH 2/2] gnu: Update python2-qrcode Daniel Pimentel

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.