diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2015-12-01 20:55:06 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2015-12-01 20:55:06 +0200 |
commit | b850a6d82d83bc2b529435c72ea8724c7995c61e (patch) | |
tree | 0e676d5dcbd7a8d261c61c9cde2426dec59b1877 | |
parent | 94ce6b495992a3924b1930953bd6dfe41ef6ab62 (diff) | |
download | guix-b850a6d82d83bc2b529435c72ea8724c7995c61e.tar guix-b850a6d82d83bc2b529435c72ea8724c7995c61e.tar.gz |
gnu: python-babel: Update to 2.1.1.
* gnu/packages/python.scm (python-babel): Update to 2.1.1.
[source]: Change uri to pypi format.
-rw-r--r-- | gnu/packages/python.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index cd19462fa2..2901951091 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -597,15 +597,14 @@ using Python 2.4 or higher and provides access to the Olson timezone database.") (define-public python-babel (package (name "python-babel") - (version "1.3") + (version "2.1.1") (source (origin (method url-fetch) - (uri (string-append "https://pypi.python.org/packages/source/B/Babel/Babel-" - version ".tar.gz")) + (uri (pypi-uri "Babel" version)) (sha256 (base32 - "0bnin777lc53nxd1hp3apq410jj5wx92n08h7h4izpl4f4sx00lz")))) + "0j2jgfzj1a2m39pm2qc36fzr7a6p5ybwndi0xdzhi2p8zw7dbdkz")))) (build-system python-build-system) (inputs `(("python-pytz" ,python-pytz) |