|
@@ -13,7 +13,7 @@ def pypi_src_uri(d):
|
|
|
package = d.getVar('PYPI_PACKAGE', True)
|
|
|
package_ext = d.getVar('PYPI_PACKAGE_EXT', True)
|
|
|
pv = d.getVar('PV', True)
|
|
|
- return 'https://pypi.python.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext)
|
|
|
+ return 'https://files.pythonhosted.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext)
|
|
|
|
|
|
PYPI_SRC_URI ?= "${@pypi_src_uri(d)}"
|
|
|
|