aboutsummaryrefslogtreecommitdiff
path: root/overlays/python/default.nix
blob: 6b6f9265a5fc6a5d1789ac37d8c9df85fc2d4b5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
self: super:
{
  python-environment = super.buildEnv {
    name = "python-environment";
    paths = [
      (self.python38.withPackages (
        ps: with ps; [
          flake8
          gprof2dot
          ipython
          pip
          pycodestyle
          pyflakes
          pygobject3
          pyparsing
          setuptools
          virtualenv
          yamllint
        ]
      ))
      self.python-language-server
      self.setupcfg2nix
    ];
  };
}