nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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