summaryrefslogtreecommitdiff
path: root/nixhome/.config/nixpkgs/overlays/pythonEnv.nix
blob: 1acf14dbd8ca5be67dae61b8081596498034e579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
self: super: {
    defaultPythonEnv = super.buildEnv {
        name = "defaultPythonEnv";
        paths = [
            (self.python39.withPackages (
                ps: with ps; [
                    ipython pep8
                    jupyterlab jupyter-c-kernel

                    python-lsp-server

                    # Math stuff
                    numpy scipy matplotlib

                    pillow networkx
                ]
                ))
            ];
        };
    }