nix-jupyter/shell.nix

17 lines
371 B
Nix

{pkgs ? import <nixpkgs> {}, ...}:
with pkgs;
mkShellNoCC {
nativeBuildInputs = [
(python3.withPackages (ps:
with ps; [
jupyterlab
jupyterlab-git
nbdime
nbconvert
python-lsp-server
(ps.callPackage ./catppuccin_jupyterlab {})
]))
];
shellHook = import ./shellhook.nix {};
}