3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/misc/vim-plugins/update-shell.nix
2021-11-11 10:53:03 -05:00

15 lines
199 B
Nix

{ nixpkgs ? import ../../.. { } }:
with nixpkgs;
let
pyEnv = python3.withPackages(ps: [ ps.GitPython ]);
in
mkShell {
packages = [
bash
pyEnv
nix_2_3
nix-prefetch-scripts
];
}