guix-commits
[Top][All Lists]
Advanced

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

03/08: gnu: Add python-validate-email.


From: Danny Milosavljevic
Subject: 03/08: gnu: Add python-validate-email.
Date: Sun, 4 Jun 2017 09:42:59 -0400 (EDT)

dannym pushed a commit to branch master
in repository guix.

commit 0960bf8b3976dcdc9554c288d16d229bc145ea8f
Author: Danny Milosavljevic <address@hidden>
Date:   Sat Jun 3 08:22:11 2017 +0200

    gnu: Add python-validate-email.
    
    * gnu/packages/python.scm (python-validate-email, python2-validate-email):
    New variables.
---
 gnu/packages/python.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index df9503e..8adf658 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -15121,3 +15121,24 @@ validation of URIs (see RFC 3986) and IRIs (see RFC 
3987).")
 
 (define-public python2-rfc3987
   (package-with-python2 python-rfc3987))
+
+(define-public python-validate-email
+  (package
+    (name "python-validate-email")
+    (version "1.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (pypi-uri "validate_email" version))
+      (sha256
+       (base32
+        "1bxffaf5yz2cph8ki55vdvdypbwkvn2xr1firlcy62vqbzf1jivq"))))
+    (build-system python-build-system)
+    (home-page "http://github.com/syrusakbary/validate_email";)
+    (synopsis "Verifies if an email address is valid and really exists")
+    (description "@code{validate_email} can be used to verify if an email
+address is valid and really exists.")
+    (license license:lgpl3+)))
+
+(define-public python2-validate-email
+  (package-with-python2 python-validate-email))



reply via email to

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