diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-03-17 18:24:13 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-03-17 18:24:13 +0100 |
commit | 9b43a0ffa3869e56063cd4dea054828e53113c4b (patch) | |
tree | 2721a631d73ef903b245b7b7c77cf58e375874a0 /gnu/packages/python.scm | |
parent | 7c516af64176620d71058f6003ef19209cc20c12 (diff) | |
download | guix-9b43a0ffa3869e56063cd4dea054828e53113c4b.tar guix-9b43a0ffa3869e56063cd4dea054828e53113c4b.tar.gz |
gnu: python: Change URL to https.
* gnu/packages/python.scm (python-2, python)[source]: Change URL to
https. This makes sure GnuTLS is available in the derivation that
downloads the source, which is required since http URLs get redirected
to https anyway. Reported by Manolis Ragkousis <manolis837@gmail.com>.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index ad1ac5c8f7..7997618fcf 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -46,7 +46,7 @@ (source (origin (method url-fetch) - (uri (string-append "http://www.python.org/ftp/python/" + (uri (string-append "https://www.python.org/ftp/python/" version "/Python-" version ".tar.xz")) (sha256 (base32 @@ -165,7 +165,7 @@ data types.") (source (origin (method url-fetch) - (uri (string-append "http://www.python.org/ftp/python/" + (uri (string-append "https://www.python.org/ftp/python/" version "/Python-" version ".tar.xz")) (sha256 (base32 |