15 lines
214 B
Nix
15 lines
214 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}: pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
python312
|
|
|
|
# Packages
|
|
python312Packages.pyyaml
|
|
python312Packages.termcolor
|
|
];
|
|
|
|
shellHook = ''
|
|
./shell
|
|
'';
|
|
}
|