diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-28 11:57:35 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-28 12:24:24 +0100 |
commit | 3d010466e6ca79630578179223ca6a12870826f4 (patch) | |
tree | acf2ff50517b183483adee4756d3504dc87ad727 /gnu | |
parent | ba93e239eb1fdc694b0a855f668ef9dab51ab3f2 (diff) | |
download | guix-3d010466e6ca79630578179223ca6a12870826f4.tar guix-3d010466e6ca79630578179223ca6a12870826f4.tar.gz |
gnu: python-zope-exceptions: Use PYPI-URI.
* gnu/packages/python-web.scm (python-zope-exceptions)[source]: Use PYPI-URI.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-web.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 006151bc37..010bf3f04f 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -877,9 +877,7 @@ conforming to a given API or contract.") (source (origin (method url-fetch) - (uri (string-append "https://pypi.python.org/packages/source/z" - "/zope.exceptions/zope.exceptions-" - version ".tar.gz")) + (uri (pypi-uri "zope.exceptions" version)) (sha256 (base32 "0zwxaaa66sqxg5k7zcrvs0fbg9ym1njnxnr28dfmchzhwjvwnfzl")))) |