diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-28 11:57:59 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-28 12:24:24 +0100 |
commit | d409c993a0491c2ce1db6f357f28cd0c8283176e (patch) | |
tree | 7eaf53ba2e1c8f09cce29592acd8fd4ed7addc4c /gnu/packages | |
parent | 3d010466e6ca79630578179223ca6a12870826f4 (diff) | |
download | guix-d409c993a0491c2ce1db6f357f28cd0c8283176e.tar guix-d409c993a0491c2ce1db6f357f28cd0c8283176e.tar.gz |
gnu: python-zope-testrunner: Use PYPI-URI.
* gnu/packages/python-web.scm (python-zope-testrunner)[source]: Use PYPI-URI.
Diffstat (limited to 'gnu/packages')
-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 010bf3f04f..3a581f963b 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -929,9 +929,7 @@ forms, HTTP servers, regular expressions, and more.") (source (origin (method url-fetch) - (uri (string-append "https://pypi.python.org/packages/source/z" - "/zope.testrunner/zope.testrunner-" - version ".zip")) + (uri (pypi-uri "zope.testrunner" version ".zip")) (sha256 (base32 "1r7iqknhh55y45f64mz5hghgvzx34h1i11k350s0avx6q8gznja1")))) |