guix: python-build-system: Change pypi-uri to use https://pypi.io.

* guix/build-system/python.scm (pypi-uri): Use https://pypi.io.
* gnu/packages/python.scm (python-twisted)[uri]: Remove https://pypi.io.
This commit is contained in:
宋文武 2016-06-23 19:23:28 +08:00
parent 934c5d5b28
commit 8ea8e8d3c3
No known key found for this signature in database
GPG key ID: 26525665AE727D37
2 changed files with 2 additions and 5 deletions

View file

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