nixpkgs/pkgs/applications/editors/kakoune/plugins/update-shell.nix
2022-12-05 21:48:16 +01:00

15 lines
197 B
Nix

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