Merge pull request #249489 from tjni/casa-formats-io

python3.pkgs.casa-formats-io: add missing build dependencies
This commit is contained in:
OTABI Tomoya
2023-08-18 11:36:36 +09:00
committed by GitHub
@@ -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 ];