From 6cd2ab27ce129b32777000c63961be0dd202b929 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Sat, 29 Jul 2023 01:10:23 -0700 Subject: [PATCH] python3.pkgs.ax: add and move some build dependencies --- pkgs/development/python-modules/ax/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/ax/default.nix b/pkgs/development/python-modules/ax/default.nix index 5f87602064bf..be254b3db9ce 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 ];