summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorBen Morgan <drbenmorgan@users.noreply.github.com>2021-01-27 13:43:21 +0000
committerGitHub <noreply@github.com>2021-01-27 08:43:21 -0500
commit561557d2f5cc780678316174d65ff44aea4022d3 (patch)
treef04a7d1b3ccb9dbce63722be648bfe1e818fb20e /var
parentb8b432c3aa78506f8be441877fe712bad30588e9 (diff)
downloadspack-561557d2f5cc780678316174d65ff44aea4022d3.tar.gz
spack-561557d2f5cc780678316174d65ff44aea4022d3.tar.bz2
spack-561557d2f5cc780678316174d65ff44aea4022d3.tar.xz
spack-561557d2f5cc780678316174d65ff44aea4022d3.zip
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.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-h5py/package.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-h5py/package.py b/var/spack/repos/builtin/packages/py-h5py/package.py
index 39b352e4ae..384eb4f059 100644
--- a/var/spack/repos/builtin/packages/py-h5py/package.py
+++ b/var/spack/repos/builtin/packages/py-h5py/package.py
@@ -36,6 +36,7 @@ class PyH5py(PythonPackage):
depends_on('py-cython@0.29:', type=('build'), when='@3.0.0:')
depends_on('py-pkgconfig', type='build')
depends_on('py-setuptools', type='build')
+ depends_on('py-wheel', type='build', when='@3.0.0:')
# Build and runtime dependencies
depends_on('py-cached-property@1.5:', type=('build', 'run'))