0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

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 # avoid strict pinning of numpy
postPatch = '' postPatch = ''
substituteInPlace setup.py \ substituteInPlace setup.py \
--replace "numpy ==" "numpy >=" --replace "numpy ==" "numpy >=" \
--replace "mpi4py ==" "mpi4py >="
''; '';
HDF5_DIR = "${hdf5}"; HDF5_DIR = "${hdf5}";