diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-07-17 12:01:56 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-07-17 15:16:19 +0300 |
commit | 988d1bad7b5d5aca4c54cdfd0d7afcc0be1e7a2c (patch) | |
tree | 5641d8739f8f8cf924e0e2361cdfdd3edb15d087 /gnu | |
parent | 287cfd1a084e07dce28379b75beae05cb7ed24fd (diff) | |
download | guix-988d1bad7b5d5aca4c54cdfd0d7afcc0be1e7a2c.tar guix-988d1bad7b5d5aca4c54cdfd0d7afcc0be1e7a2c.tar.gz |
gnu: python-simplejson: Update to 3.8.2.
* gnu/packages/python.scm (python-simplejson): Update to 3.8.2.
[source]: Use 'pypi-uri' format.
Diffstat (limited to 'gnu')
-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 a12323045c..430c7d4456 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1122,15 +1122,14 @@ after Andy Lester’s Perl module WWW::Mechanize.") (define-public python-simplejson (package (name "python-simplejson") - (version "3.3.0") + (version "3.8.2") (source (origin (method url-fetch) - (uri (string-append "https://pypi.python.org/packages/source/s/simplejson/simplejson-" - version ".tar.gz")) + (uri (pypi-uri "simplejson" version)) (sha256 (base32 - "07wsry5j44l5zzm74l4j2bvasiq8n5m32f31n2p7c68i5vc6p2ks")))) + "0zylrnax8b6r0ndgni4w9c599fi6wm9vx5g6k3ddqfj3932kk16m")))) (build-system python-build-system) (home-page "http://simplejson.readthedocs.org/en/latest/") (synopsis |