anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / editors / jupyter / default.nix
blob08c33982364da469d9463c66b57d77f3d6f97721
1 # Jupyter notebook with the given kernel definitions
3 { python3
4 , jupyter-kernel
5 , definitions ? jupyter-kernel.default
6 }:
8 let
9   jupyterPath = (jupyter-kernel.create { inherit definitions; });
10   jupyter-notebook = (python3.buildEnv.override {
11     extraLibs = [ python3.pkgs.notebook ];
12     makeWrapperArgs = ["--prefix JUPYTER_PATH : ${jupyterPath}"];
13   }).overrideAttrs(oldAttrs: {
14     meta = oldAttrs.meta // { mainProgram = "jupyter-notebook"; };
15   });
18 jupyter-notebook