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