summaryrefslogtreecommitdiff
path: root/guix/build-system
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2019-06-16 14:52:25 +0900
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2019-07-02 10:08:00 +0900
commita5376200541abf8245973e601be246bf65b8b6c7 (patch)
tree07e751938add1ca379dfc88d1dc749574f67fcaa /guix/build-system
parentd514276b93ccf168438bbd2892fbc64d5661106c (diff)
downloadpatches-a5376200541abf8245973e601be246bf65b8b6c7.tar
patches-a5376200541abf8245973e601be246bf65b8b6c7.tar.gz
import: pypi: Update the host URI.
* guix/build-system/python.scm (pypi-uri): Update the host URI to "files.pythonhosted.org".
Diffstat (limited to 'guix/build-system')
-rw-r--r--guix/build-system/python.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build-system/python.scm b/guix/build-system/python.scm
index b753940bad..e39c06528e 100644
--- a/guix/build-system/python.scm
+++ b/guix/build-system/python.scm
@@ -50,7 +50,7 @@
"Return a URI string for the Python package hosted on the Python Package
Index (PyPI) corresponding to NAME and VERSION. EXTENSION is the file name
extension, such as '.tar.gz'."
- (string-append "https://pypi.org/packages/source/"
+ (string-append "https://files.pythonhosted.org/packages/source/"
(string-take name 1) "/" name "/"
name "-" version extension))