aboutsummaryrefslogtreecommitdiff
path: root/shells/pymath.nix
blob: 5fa8b1e82b31a308eb0f1c5db625e5ac320eabb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs ? import <nixpkgs> {}, pythonPackages ? pkgs.python38Packages }:

pkgs.mkShell {
    buildInputs = with pythonPackages; [
        jupyterlab
        jupyter-c-kernel
        numpy
        scipy
        matplotlib
    ];

    shellHook = ''
        echo Lets do some python
        alias start="jupyter lab"
        '';
}