1{ 2 pkgs ? import ../../../../.. { }, 3}: 4 5with pkgs; 6let 7 pyEnv = python3.withPackages (ps: [ ps.gitpython ]); 8in 9 10mkShell { 11 packages = [ 12 bash 13 pyEnv 14 nix 15 nix-prefetch-scripts 16 ]; 17}