gnu: Use pypi.org.

<pypi.io> redirects to <pypi.org>.

* guix/build-system/python.scm (pypi-uri): Replace pypi.io with pypi.org.
* guix/import/pypi.scm (pypi-url?): Likewise.
* tests/pypi.scm: Likewise.
This commit is contained in:
Leo Famulari 2018-10-12 23:47:15 -04:00
parent eed00f93e8
commit 7277d06d8b
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08
3 changed files with 3 additions and 3 deletions

View file

@ -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.io/packages/source/"
(string-append "https://pypi.org/packages/source/"
(string-take name 1) "/" name "/"
name "-" version extension))