aboutsummaryrefslogtreecommitdiff
path: root/nix/mypython.nix
blob: 524ec513f43bb8357f62da25af795681c7744cec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ python3, flake8-isort }:

let
  my-python-packages = python-packages:
    with python-packages; [
      jedi-language-server
      flake8
      flake8-isort
      isort
      black
    ];
  mypython = python3.withPackages my-python-packages;
in mypython