nixpkgs-suyu/pkgs/misc/vim-plugins/update-shell.nix
2021-11-11 10:53:03 -05:00

14 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
];
}