Unverified Commit 95c5232e authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

jupyter: respect JUPYTER_PATH (#341093)

parents 24959f93 83bd47a8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ let
  jupyterPath = (jupyter-kernel.create { inherit definitions; });
  jupyter-notebook = (python3.buildEnv.override {
    extraLibs = [ python3.pkgs.notebook ];
    makeWrapperArgs = ["--set JUPYTER_PATH ${jupyterPath}"];
    makeWrapperArgs = ["--prefix JUPYTER_PATH : ${jupyterPath}"];
  }).overrideAttrs(oldAttrs: {
    meta = oldAttrs.meta // { mainProgram = "jupyter-notebook"; };
  });