python3.pkgs.casa-formats-io: add missing build dependencies

This commit is contained in:
Theodore Ni
2023-08-16 01:19:59 -07:00
parent 5d6575d589
commit 725d807be3
@@ -4,7 +4,9 @@
, astropy
, dask
, numpy
, oldest-supported-numpy
, setuptools-scm
, wheel
}:
buildPythonPackage rec {
@@ -17,7 +19,11 @@ buildPythonPackage rec {
hash = "sha256-8iZ+wcSfh5ACTb3/iQAf2qQpwZ6wExWwcdJoLmCEjB0=";
};
nativeBuildInputs = [ setuptools-scm ];
nativeBuildInputs = [
oldest-supported-numpy
setuptools-scm
wheel
];
propagatedBuildInputs = [ astropy dask numpy ];