about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ax
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2023-07-29 01:10:23 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2023-08-04 19:19:13 -0700
commit6cd2ab27ce129b32777000c63961be0dd202b929 (patch)
treec32f23ada16603d63ef6bca2404b8318abac1b8d /pkgs/development/python-modules/ax
parent92fceb3cc29fe818d5d1c4d71de5c095818a9434 (diff)
python3.pkgs.ax: add and move some build dependencies
Diffstat (limited to 'pkgs/development/python-modules/ax')
-rw-r--r--pkgs/development/python-modules/ax/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/ax/default.nix b/pkgs/development/python-modules/ax/default.nix
index 5f87602064bf4..be254b3db9cef 100644
--- a/pkgs/development/python-modules/ax/default.nix
+++ b/pkgs/development/python-modules/ax/default.nix
@@ -6,8 +6,10 @@
 , jinja2
 , pandas
 , plotly
+, setuptools
 , setuptools-scm
 , typeguard
+, wheel
 , hypothesis
 , mercurial
 , pyfakefs
@@ -27,13 +29,18 @@ buildPythonPackage rec {
     hash = "sha256-1KLLjeUktXvIDOlTQzMmpbL/On8PTxZQ44Qi4BT3nPk=";
   };
 
+  nativeBuildInputs = [
+    setuptools
+    setuptools-scm
+    wheel
+  ];
+
   propagatedBuildInputs = [
     botorch
     ipywidgets
     jinja2
     pandas
     plotly
-    setuptools-scm
     typeguard
   ];