python3.pkgs.scikit-misc: add and relax build dependencies

This commit is contained in:
Theodore Ni 2023-08-23 14:33:42 -07:00
parent 8a79c8e839
commit 87239a023b
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -8,6 +8,8 @@
, pkg-config
, numpy
, openblas
, setuptools
, wheel
}:
buildPythonPackage rec {
@ -23,6 +25,9 @@ buildPythonPackage rec {
postPatch = ''
patchShebangs .
substituteInPlace pyproject.toml \
--replace 'numpy==' 'numpy>='
'';
nativeBuildInputs = [
@ -30,7 +35,10 @@ buildPythonPackage rec {
gfortran
git
meson-python
numpy
pkg-config
setuptools
wheel
];
buildInputs = [