[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 03/31] gnu: Add python-certifi.
From: |
David Thompson |
Subject: |
[PATCH 03/31] gnu: Add python-certifi. |
Date: |
Fri, 5 Sep 2014 11:18:09 -0400 |
* gnu/packages/python.scm (python-certifi, python2-certifi): New variables.
---
gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index ad5def2..f591605 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1021,3 +1021,30 @@ files.")
(define-public python2-pyld
(package-with-python2 python-pyld))
+
+(define-public python-certifi
+ (package
+ (name "python-certifi")
+ (version "14.05.14")
+ (source (origin
+ (method url-fetch)
+ (uri
+ (string-append
+ "https://pypi.python.org/packages/source/c/certifi/certifi-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0s8vxzfz6s4m6fvxc7z25k9j35w0rh6jkw3wwcd1az1mssncn6qy"))))
+ (build-system python-build-system)
+ (inputs
+ `(("python-setuptools" ,python-setuptools)))
+ (arguments `(#:tests? #f)) ; no tests
+ (home-page "http://python-requests.org/")
+ (synopsis "Python CA certificate bundle")
+ (description
+ "Certifi is a Python library that contains a CA certificate bundle, which
+is useful for verifying HTTP requests.")
+ (license asl2.0)))
+
+(define-public python2-certifi
+ (package-with-python2 python-certifi))
--
2.0.1
- [PATCH 01/31] gnu: Add python-exif-read., David Thompson, 2014/09/05
- [PATCH 02/31] gnu: Add python-pyld., David Thompson, 2014/09/05
- [PATCH 03/31] gnu: Add python-certifi.,
David Thompson <=
- [PATCH 07/31] gnu: Add python-mimeparse., David Thompson, 2014/09/05
- [PATCH 05/31] gnu: Add python-jsonschema., David Thompson, 2014/09/05
- [PATCH 04/31] gnu: Add python2-requests., David Thompson, 2014/09/05
- [PATCH 06/31] gnu: Add python-unidecode., David Thompson, 2014/09/05