From 561557d2f5cc780678316174d65ff44aea4022d3 Mon Sep 17 00:00:00 2001 From: Ben Morgan Date: Wed, 27 Jan 2021 13:43:21 +0000 Subject: [PATCH] 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. --- var/spack/repos/builtin/packages/py-h5py/package.py | 1 + 1 file changed, 1 insertion(+) 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'))