[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#27071: [PATCH v2 3/8] gnu: Add python-validate-email.
From: |
Danny Milosavljevic |
Subject: |
bug#27071: [PATCH v2 3/8] gnu: Add python-validate-email. |
Date: |
Sat, 3 Jun 2017 08:22:11 +0200 |
* 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 98d114301..acd579791 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14968,3 +14968,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))
- bug#27071: [PATCH v2 0/8] Add python-flasgger and its dependencies., Danny Milosavljevic, 2017/06/03
- bug#27071: [PATCH v2 2/8] gnu: Add python-rfc3987., Danny Milosavljevic, 2017/06/03
- bug#27071: [PATCH v2 1/8] gnu: Add python-jsonpointer., Danny Milosavljevic, 2017/06/03
- bug#27071: [PATCH v2 5/8] gnu: Add python-marshmallow., Danny Milosavljevic, 2017/06/03
- bug#27071: [PATCH v2 8/8] gnu: Add python-flasgger., Danny Milosavljevic, 2017/06/03
- bug#27071: [PATCH v2 7/8] gnu: Add python-apispec., Danny Milosavljevic, 2017/06/03
- bug#27071: [PATCH v2 3/8] gnu: Add python-validate-email.,
Danny Milosavljevic <=
- bug#27071: [PATCH v2 4/8] gnu: Add python-flex., Danny Milosavljevic, 2017/06/03
- bug#27071: [PATCH v2 6/8] gnu: Add python-bottle., Danny Milosavljevic, 2017/06/03
- bug#27071: [PATCH v2 0/8] Add python-flasgger and its dependencies., Marius Bakke, 2017/06/04