mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
21 lines
242 B
Nix
21 lines
242 B
Nix
![]() |
{
|
||
|
nixpkgs ? import ../.. { },
|
||
|
}:
|
||
|
with nixpkgs;
|
||
|
let
|
||
|
pyEnv = python3.withPackages (
|
||
|
ps: with ps; [
|
||
|
packaging
|
||
|
requests
|
||
|
toolz
|
||
|
pyyaml
|
||
|
]
|
||
|
);
|
||
|
in
|
||
|
mkShell {
|
||
|
packages = [
|
||
|
pyEnv
|
||
|
nix-prefetch-scripts
|
||
|
];
|
||
|
}
|