anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / editors / kakoune / plugins / update-shell.nix
blobb323574169aa3b342e28f981afb1b2447235be2c
1 { pkgs ? import ../../../../.. { } }:
3 with pkgs;
4 let
5   pyEnv = python3.withPackages (ps: [ ps.gitpython ]);
6 in
8 mkShell {
9   packages = [
10     bash
11     pyEnv
12     nix
13     nix-prefetch-scripts
14   ];