Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 20 lines 223 B view raw
1{ 2 pkgs ? import ../../../../../../.. { }, 3}: 4 5with pkgs; 6 7let 8 pythonWithPackages = python3.withPackages ( 9 ps: with ps; [ 10 requests 11 ] 12 ); 13in 14 15mkShell { 16 packages = [ 17 nurl 18 pythonWithPackages 19 ]; 20}