diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2019-06-16 14:52:25 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2019-07-02 10:08:00 +0900 |
commit | a5376200541abf8245973e601be246bf65b8b6c7 (patch) | |
tree | 07e751938add1ca379dfc88d1dc749574f67fcaa /guix | |
parent | d514276b93ccf168438bbd2892fbc64d5661106c (diff) |
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')
-rw-r--r-- | guix/build-system/python.scm | 2 |
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)) |