guix-commits
[Top][All Lists]
Advanced

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

10/11: gnu: Add python-ukpostcodeparser and python2-ukpostcodeparser.


From: ???
Subject: 10/11: gnu: Add python-ukpostcodeparser and python2-ukpostcodeparser.
Date: Sat, 25 Jun 2016 12:50:11 +0000 (UTC)

iyzsong pushed a commit to branch master
in repository guix.

commit 8987d91e7fae03021e9a4e61e165f670912a2d42
Author: 宋文武 <address@hidden>
Date:   Thu Jun 23 23:14:53 2016 +0800

    gnu: Add python-ukpostcodeparser and python2-ukpostcodeparser.
    
    * gnu/packages/python.scm (python-ukpostcodeparser)
    (python2-ukpostcodeparser): New variables.
---
 gnu/packages/python.scm |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 68123cc..50d9ee9 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -9500,3 +9500,25 @@ It supports TSIG authenticated messages and EDNS0.")
 (define-public python2-email-validator
   (package-with-python2 python-email-validator))
 
+(define-public python-ukpostcodeparser
+  (package
+    (name "python-ukpostcodeparser")
+    (version "1.0.3")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "UkPostcodeParser" version))
+              (sha256
+               (base32
+                "1jwg9z4rz51mcka1821rwgycsd0mcicyp1kiwjfa2kvg8bm9p2qd"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-setuptools" ,python-setuptools)))
+    (home-page "https://github.com/hamstah/ukpostcodeparser";)
+    (synopsis "UK Postcode parser for Python")
+    (description
+     "This library provides the @code{parse_uk_postcode} function for
+parsing UK postcodes.")
+    (license license:expat)))
+
+(define-public python2-ukpostcodeparser
+  (package-with-python2 python-ukpostcodeparser))



reply via email to

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