Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 17 lines 200 B view raw
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}