summaryrefslogtreecommitdiff
path: root/guix/import/pypi.scm
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2016-12-20 12:44:45 +0100
committerMarius Bakke <mbakke@fastmail.com>2016-12-20 12:57:26 +0100
commit4cb7786eff9b9188169ed2c2e5af53903962e7d1 (patch)
treee5884d1fc823354524c79a8710596a5423a0080b /guix/import/pypi.scm
parentcccbc63950ad061538b1132b3dfef21794d6b780 (diff)
downloadgnu-guix-4cb7786eff9b9188169ed2c2e5af53903962e7d1.tar
gnu-guix-4cb7786eff9b9188169ed2c2e5af53903962e7d1.tar.gz
import: pypi: Match new 'pypi-uri' domain in updater.
* guix/import/pypi.scm (pypi-package?): Match pypi.io domain.
Diffstat (limited to 'guix/import/pypi.scm')
-rw-r--r--guix/import/pypi.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm
index 9794ff9757..7cce0fc594 100644
--- a/guix/import/pypi.scm
+++ b/guix/import/pypi.scm
@@ -303,7 +303,8 @@ VERSION, SOURCE-URL, HOME-PAGE, SYNOPSIS, DESCRIPTION, and LICENSE."
"Return true if PACKAGE is a Python package from PyPI."
(define (pypi-url? url)
- (string-prefix? "https://pypi.python.org/" url))
+ (or (string-prefix? "https://pypi.python.org/" url)
+ (string-prefix? "https://pypi.io/packages" url)))
(let ((source-url (and=> (package-source package) origin-uri))
(fetch-method (and=> (package-source package) origin-method)))