py-h5py: add build dependency on py-wheel (#21320)

h5py requires wheel at build time from version 3.0.0, based on
the project's pyproject.toml.
This commit is contained in:
Ben Morgan 2021-01-27 13:43:21 +00:00 committed by GitHub
parent b8b432c3aa
commit 561557d2f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,6 +36,7 @@ class PyH5py(PythonPackage):
depends_on('py-cython@0.29:', type=('build'), when='@3.0.0:') depends_on('py-cython@0.29:', type=('build'), when='@3.0.0:')
depends_on('py-pkgconfig', type='build') depends_on('py-pkgconfig', type='build')
depends_on('py-setuptools', type='build') depends_on('py-setuptools', type='build')
depends_on('py-wheel', type='build', when='@3.0.0:')
# Build and runtime dependencies # Build and runtime dependencies
depends_on('py-cached-property@1.5:', type=('build', 'run')) depends_on('py-cached-property@1.5:', type=('build', 'run'))