nixpkgs/pkgs/applications/editors/vim/plugins/update-shell.nix
2022-12-05 21:49:15 +01:00

17 lines
265 B
Nix

{ pkgs ? import ../../../../.. { } }:
# Ideally, pkgs points to default.nix file of Nixpkgs official tree
with pkgs;
let
pyEnv = python3.withPackages (ps: [ ps.gitpython ]);
in
mkShell {
packages = [
bash
pyEnv
nix
nix-prefetch-scripts
];
}