diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2015-12-30 12:54:30 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2015-12-30 23:16:09 +0200 |
commit | 8925d4f3453ce1c5465c67686dbe215d9dfe8e3c (patch) | |
tree | c54c8a76e55319a1840db53133a2fd2815fc2012 /gnu | |
parent | 7fb9ff4dea7e6aa413678b924f53d80260037f66 (diff) | |
download | guix-8925d4f3453ce1c5465c67686dbe215d9dfe8e3c.tar guix-8925d4f3453ce1c5465c67686dbe215d9dfe8e3c.tar.gz |
gnu: python-unidecode: Update to 0.04.18.
* gnu/packages/python.scm (python-unidecode): Update to 0.04.18.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 6122b4f368..3bf5652d47 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2225,16 +2225,13 @@ than Python’s urllib2 library.") (define-public python-unidecode (package (name "python-unidecode") - (version "0.04.16") + (version "0.04.18") (source (origin (method url-fetch) - (uri - (string-append - "https://pypi.python.org/packages/source/U/Unidecode/Unidecode-" - version ".tar.gz")) + (uri (pypi-uri "Unidecode" version)) (sha256 (base32 - "0yv56vc49rvippyxgxvcyz7jklc07ky38rcspax7p00sgmriiljc")))) + "12hhblqy1ajvidm38im4171x4arg83pfmziyn53nizp29p3m14gi")))) (build-system python-build-system) (inputs `(("python-setuptools" ,python-setuptools))) |