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

15 lines
195 B
Nix
Raw Normal View History

{ nixpkgs ? import ../../.. { } }:
with nixpkgs;
let
pyEnv = python3.withPackages(ps: [ ps.GitPython ]);
in
mkShell {
packages = [
bash
pyEnv
2021-09-07 18:15:15 +02:00
nix
nix-prefetch-scripts
];
}