Files
dibbler/nix/shell.nix

13 lines
111 B
Nix

{
mkShell,
python3Packages,
ruff,
}:
mkShell {
packages = [
python3Packages.black
ruff
];
}