diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-04-10 12:13:02 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-04-10 12:13:02 +0300 |
commit | 286f1bac9e423f468b8b8fe468c2612ca56ae10a (patch) | |
tree | c590f2f32e1184d309d03ecd99dc4d99a98fb348 | |
parent | 81b9bbbd578262986ab66c3454e9671948edc571 (diff) | |
download | guix-286f1bac9e423f468b8b8fe468c2612ca56ae10a.tar guix-286f1bac9e423f468b8b8fe468c2612ca56ae10a.tar.gz |
gnu: python-httplib2: Update to 0.9.2.
* gnu/packages/python.scm (python-httplib2): Update to 0.9.2.
-rw-r--r-- | gnu/packages/python.scm | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 94d630a9ff..04dafa5e36 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -483,22 +483,18 @@ Python interface around SSH networking concepts.") (define-public python-httplib2 (package (name "python-httplib2") - (version "0.9.1") + (version "0.9.2") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/source/h/httplib2/httplib2-" - version - ".tar.gz")) + (uri (pypi-uri "httplib2" version)) (sha256 (base32 - "1xc3clbrf77r0600kja71j7hk1218sjiq0gfmb8vjdajka8kjqxw")))) + "126rsryvw9vhbf3qmsfw9lf4l4xm2srmgs439lgma4cpag4s3ay3")))) (build-system python-build-system) (native-inputs `(("python-setuptools" ,python-setuptools))) - (home-page - "https://github.com/jcgregorio/httplib2") + (home-page "https://github.com/jcgregorio/httplib2") (synopsis "Comprehensive HTTP client library") (description "A comprehensive HTTP client library supporting many features left out of |