summary refs log blame commit diff
path: root/pkgs/applications/editors/vim/plugins/update-shell.nix
blob: e1b727c49e0469f9da5376ec1ff3de4ce23ab3c1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                               
   
                                                      
  
 



              
       


                        
{ pkgs ? import ../../.. { } }:

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

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