3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.h5py: relax mpi4py bounds

This commit is contained in:
Jonathan Ringer 2022-02-09 22:57:47 -08:00
parent 889dfed13c
commit 948d09f199
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -20,7 +20,8 @@ in buildPythonPackage rec {
# avoid strict pinning of numpy
postPatch = ''
substituteInPlace setup.py \
--replace "numpy ==" "numpy >="
--replace "numpy ==" "numpy >=" \
--replace "mpi4py ==" "mpi4py >="
'';
HDF5_DIR = "${hdf5}";