about summary refs log tree commit diff
path: root/nixpkgs/pkgs/misc/vim-plugins/update-shell.nix
blob: e95801624b6915421a5c2ef8b1f29592f362af67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ nixpkgs ? import ../../.. { } }:
with nixpkgs;
let
  pyEnv = python3.withPackages(ps: [ ps.GitPython ]);
in
mkShell {
  packages = [
    bash
    pyEnv
    nix-prefetch-scripts
  ];
}