Add latest version of py-importlib-metadata (#14023)

This commit is contained in:
Adam J. Stewart 2019-12-07 14:02:16 -06:00 committed by GitHub
parent 31b45d40d9
commit 9ece63242a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,17 +9,19 @@
class PyImportlibMetadata(PythonPackage):
"""Read metadata from Python packages."""
homepage = "http://importlib-metadata.readthedocs.io/"
url = "https://pypi.io/packages/source/i/importlib_metadata/importlib_metadata-0.23.tar.gz"
homepage = "https://importlib-metadata.readthedocs.io/"
url = "https://pypi.io/packages/source/i/importlib_metadata/importlib_metadata-1.2.0.tar.gz"
version('0.23', sha256='aa18d7378b00b40847790e7c27e11673d7fed219354109d0e7b9e5b25dc3ad26')
version('0.19', sha256='23d3d873e008a513952355379d93cbcab874c58f4f034ff657c7a87422fa64e8')
version('1.2.0', sha256='41e688146d000891f32b1669e8573c57e39e5060e7f5f647aa617cd9a9568278')
version('0.23', sha256='aa18d7378b00b40847790e7c27e11673d7fed219354109d0e7b9e5b25dc3ad26')
version('0.19', sha256='23d3d873e008a513952355379d93cbcab874c58f4f034ff657c7a87422fa64e8')
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
depends_on('python@2.7:2.8,3.5:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-setuptools-scm', type='build')
depends_on('py-zipp@0.5:', type=('build', 'run'))
depends_on('py-pathlib2', when='^python@:3.4', type=('build', 'run'))
depends_on('py-contextlib2', when='^python@:2.8', type=('build', 'run'))
depends_on('py-configparser@3.5:', when='^python@:2.8', type=('build', 'run'))
depends_on('py-pathlib2', when='^python@:2', type=('build', 'run'))
depends_on('py-contextlib2', when='^python@:2', type=('build', 'run'))
depends_on('py-configparser@3.5:', when='^python@:2', type=('build', 'run'))
depends_on('py-importlib-resources', when='^python@:3.6', type='test')
depends_on('py-packaging', type='test')