[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/12: import: pypi: Update the host URI.
From: |
guix-commits |
Subject: |
11/12: import: pypi: Update the host URI. |
Date: |
Mon, 1 Jul 2019 21:43:05 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit a5376200541abf8245973e601be246bf65b8b6c7
Author: Maxim Cournoyer <address@hidden>
Date: Sun Jun 16 14:52:25 2019 +0900
import: pypi: Update the host URI.
* guix/build-system/python.scm (pypi-uri): Update the host URI to
"files.pythonhosted.org".
---
guix/build-system/python.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/build-system/python.scm b/guix/build-system/python.scm
index b753940..e39c065 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))
- branch master updated (0f06512 -> 4b60ab8), guix-commits, 2019/07/01
- 03/12: import: pypi: Do not parse optional requirements from source., guix-commits, 2019/07/01
- 02/12: tests: pypi: Mute the output of tar., guix-commits, 2019/07/01
- 06/12: import: pypi: Support more types of archives., guix-commits, 2019/07/01
- 12/12: import: pypi: Preserve package name case when forming pypi-uri., guix-commits, 2019/07/01
- 01/12: import: pypi: Do not consider requirements.txt files., guix-commits, 2019/07/01
- 05/12: import: pypi: Deduplicate requirements., guix-commits, 2019/07/01
- 04/12: import: pypi: Improve parsing of requirement specifications., guix-commits, 2019/07/01
- 11/12: import: pypi: Update the host URI.,
guix-commits <=
- 08/12: import: pypi: Fix typo in docstring., guix-commits, 2019/07/01
- 09/12: import: pypi: Completely mute the output of the "unzip" command., guix-commits, 2019/07/01
- 07/12: import: pypi: Parse wheel METADATA instead of metadata.json., guix-commits, 2019/07/01
- 10/12: import: pypi: Include optional test inputs as native-inputs., guix-commits, 2019/07/01