diff --git a/nix/pkgs/baserow/web-frontend/default.nix b/nix/pkgs/baserow/web-frontend/default.nix index 4713c117d1..c2ad73de12 100644 --- a/nix/pkgs/baserow/web-frontend/default.nix +++ b/nix/pkgs/baserow/web-frontend/default.nix @@ -7,7 +7,10 @@ let nodeEnv = import ./node-env.nix { inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript; - inherit pkgs nodejs; + inherit pkgs; + nodejs = nodejs // { + python = pkgs.python310; + }; libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; }; in