summary refs log tree commit diff
path: root/pkgs/misc/vim-plugins/update-shell.nix
blob: e1b727c49e0469f9da5376ec1ff3de4ce23ab3c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs ? import ../../.. { } }:

with pkgs;
let
  pyEnv = python3.withPackages (ps: [ ps.GitPython ]);
in

mkShell {
  packages = [
    bash
    pyEnv
    nix
    nix-prefetch-scripts
  ];
}