aboutsummaryrefslogtreecommitdiff
path: root/nix/mypython.nix
blob: 9906fa7ddcc00e6c3f8ace2fff4e8e0bac8b30a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ 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