summaryrefslogtreecommitdiffstats
path: root/meta-python/classes/pypi.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/classes/pypi.bbclass')
-rw-r--r--meta-python/classes/pypi.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/classes/pypi.bbclass b/meta-python/classes/pypi.bbclass
index 659e1c0d8..cd27cd24e 100644
--- a/meta-python/classes/pypi.bbclass
+++ b/meta-python/classes/pypi.bbclass
@@ -13,7 +13,7 @@ def pypi_src_uri(d):
13 package = d.getVar('PYPI_PACKAGE', True) 13 package = d.getVar('PYPI_PACKAGE', True)
14 package_ext = d.getVar('PYPI_PACKAGE_EXT', True) 14 package_ext = d.getVar('PYPI_PACKAGE_EXT', True)
15 pv = d.getVar('PV', True) 15 pv = d.getVar('PV', True)
16 return 'https://pypi.python.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext) 16 return 'https://files.pythonhosted.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext)
17 17
18PYPI_SRC_URI ?= "${@pypi_src_uri(d)}" 18PYPI_SRC_URI ?= "${@pypi_src_uri(d)}"
19 19