nixpkgs-suyu/pkgs/misc/vim-plugins/update-shell.nix

15 lines
199 B
Nix
Raw Normal View History

{ nixpkgs ? import ../../.. { } }:
with nixpkgs;
let
pyEnv = python3.withPackages(ps: [ ps.GitPython ]);
in
mkShell {
packages = [
bash
pyEnv
2021-11-11 16:52:22 +01:00
nix_2_3
nix-prefetch-scripts
];
}