Merge pull request #248872 from tjni/h5py

python3.pkgs.h5py: add missing build dependencies

authored by

Theodore Ni and committed by
GitHub
bee3d6f7 5c3ec91c

+4 -1
+4 -1
pkgs/development/python-modules/h5py/default.nix
··· 2 2 , fetchPypi 3 3 , buildPythonPackage 4 4 , pythonOlder 5 + , oldest-supported-numpy 5 6 , setuptools 7 + , wheel 6 8 , numpy 7 9 , hdf5 8 10 , cython ··· 33 35 # avoid strict pinning of numpy 34 36 postPatch = '' 35 37 substituteInPlace setup.py \ 36 - --replace "numpy ==" "numpy >=" \ 37 38 --replace "mpi4py ==" "mpi4py >=" 38 39 ''; 39 40 ··· 50 51 51 52 nativeBuildInputs = [ 52 53 cython 54 + oldest-supported-numpy 53 55 pkgconfig 54 56 setuptools 57 + wheel 55 58 ]; 56 59 57 60 buildInputs = [ hdf5 ]