diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-01-25 01:55:14 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-01-26 08:07:03 +0100 |
commit | 911a8fafb26ee6410ca75fb5ad944ae4e18c8011 (patch) | |
tree | 8f9149554d852696c705269151751bd9dc33fbeb | |
parent | bfaf8efd74e88d99f743845357e3f1ff191e23c2 (diff) | |
download | guix-911a8fafb26ee6410ca75fb5ad944ae4e18c8011.tar guix-911a8fafb26ee6410ca75fb5ad944ae4e18c8011.tar.gz |
gnu: python-redis: Update to 2.10.5.
* gnu/packages/python.scm (python-redis): Update to 2.10.5.
[source]: Use pypi-uri.
-rw-r--r-- | gnu/packages/python.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 0ec3a664d3..d4a4775bdf 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3160,15 +3160,13 @@ mining and data analysis.") (define-public python-redis (package (name "python-redis") - (version "2.10.3") + (version "2.10.5") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/source/r/redis/redis-" - version ".tar.gz")) + (uri (pypi-uri "redis" version)) (sha256 - (base32 "1701qjwn4n05q90fdg4bsg96s27xf5s4hsb4gxhv3xk052q3gyx4")))) + (base32 "0csmrkxb29x7xs9b51zplwkkq2hwnbh9jns1g85dykn5rxmaxysx")))) (build-system python-build-system) ;; Tests require a running Redis server (arguments '(#:tests? #f)) |