about summary refs log tree commit diff
path: root/pkgs/development/python-modules/casa-formats-io
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2023-08-16 01:19:59 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2023-08-16 01:19:59 -0700
commit725d807be3225737478e63e490eb06b0f248d52e (patch)
tree94fac8b01161c9ba2476ba56e5c6ef8a6b77ce8c /pkgs/development/python-modules/casa-formats-io
parent5d6575d58957abd0e3c4c621586ac524a68bf0ee (diff)
python3.pkgs.casa-formats-io: add missing build dependencies
Diffstat (limited to 'pkgs/development/python-modules/casa-formats-io')
-rw-r--r--pkgs/development/python-modules/casa-formats-io/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/casa-formats-io/default.nix b/pkgs/development/python-modules/casa-formats-io/default.nix
index a8ed0ac494959..dd9d94715ecf2 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 ];