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