Add the py-importlib-resources package (#13854)

* Add the py-importlib_re package

* Rename package to conform with spack naming convention.

* Rename package to py-importlib-resources
Add python depend modules for previous python versions and depends_on python.

* Add whitespaces.
This commit is contained in:
Joe Koning 2019-11-25 11:00:45 -08:00 committed by Adam J. Stewart
parent 87e757ee93
commit c349759acd

View File

@ -0,0 +1,22 @@
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class PyImportlibResources(PythonPackage):
"""Read resources from Python packages"""
homepage = "https://pypi.org/project/importlib_resources/"
url = "https://pypi.io/packages/source/i/importlib_resources/importlib_resources-1.0.2.tar.gz"
version('1.0.2', sha256='d3279fd0f6f847cced9f7acc19bd3e5df54d34f93a2e7bb5f238f81545787078')
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-wheel', type='build')
depends_on('py-pathlib2', when='^python@:2', type=('build', 'run'))
depends_on('py-typing', when='^python@:3.4', type=('build', 'run'))