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

                    # Math stuff
                    numpy scipy matplotlib

                    pillow networkx
                ]
                ))
            ];
        };
    }