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