diff options
author | Greg Hogan <code@greghogan.com> | 2021-05-06 15:03:54 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-05-11 12:49:54 +0200 |
commit | e54d18895565561767ef24544aa88a5e89b6507b (patch) | |
tree | a9a4193206671e8c7ca1fad93bac4c5069b93f89 /gnu | |
parent | 74f83a1dee2f82fe4a8f09054e6fd74f673f6725 (diff) | |
download | guix-e54d18895565561767ef24544aa88a5e89b6507b.tar.gz |
gnu: python-pycurl: Migrate uri from bintray.
* gnu/packages/python-web.scm (python-pycurl)[source]: Download from pypi. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-web.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index f6ce09aaa5..b7411d21fa 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -41,6 +41,7 @@ ;;; Copyright © 2020 Konrad Hinsen <konrad.hinsen@fastmail.net> ;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org> ;;; Copyright © 2021 Ekaitz Zarraga <ekaitz@elenq.tech> +;;; Copyright © 2021 Greg Hogan <code@greghogan.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1206,8 +1207,7 @@ Amazon S3 compatible object storage server.") (source (origin (method url-fetch) - (uri (string-append "https://dl.bintray.com/pycurl/pycurl/pycurl-" - version ".tar.gz")) + (uri (pypi-uri "pycurl" version)) (sha256 (base32 "1cwlb76vddqp2mxqvjbhf367caddzy82rhangddjjhjqaj8x4zgc")))) (build-system python-build-system) |