codeium: 1.24.2 -> 1.30.2 (#363819)
[NixPkgs.git] / pkgs / applications / editors / jupyter / default.nix
blob9b078be78a70fdb3752fcda447feba0c3d35f902
1 # Jupyter notebook with the given kernel definitions
4   python3,
5   jupyter-kernel,
6   definitions ? jupyter-kernel.default,
7 }:
9 let
10   jupyterPath = (jupyter-kernel.create { inherit definitions; });
11   jupyter-notebook =
12     (python3.buildEnv.override {
13       extraLibs = [ python3.pkgs.notebook ];
14       makeWrapperArgs = [ "--prefix JUPYTER_PATH : ${jupyterPath}" ];
15     }).overrideAttrs
16       (oldAttrs: {
17         meta = oldAttrs.meta // {
18           mainProgram = "jupyter-notebook";
19         };
20       });
23 jupyter-notebook