From 725d807be3225737478e63e490eb06b0f248d52e Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Wed, 16 Aug 2023 01:19:59 -0700 Subject: [PATCH] python3.pkgs.casa-formats-io: add missing build dependencies --- .../python-modules/casa-formats-io/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/casa-formats-io/default.nix b/pkgs/development/python-modules/casa-formats-io/default.nix index a8ed0ac49495..dd9d94715ecf 100644 --- a/pkgs/development/python-modules/casa-formats-io/default.nix +++ b/pkgs/development/python-modules/casa-formats-io/default.nix @@ -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 ];