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