timetracker/shell.nix
Lukas Kucharczyk fda4913c97
All checks were successful
Django CI/CD / test (push) Successful in 56s
Django CI/CD / build-and-push (push) Has been skipped
add ruff to shell.nix
2024-08-11 17:24:50 +02:00

19 lines
224 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
python3
poetry
ruff
];
shellHook = ''
python -m venv .venv
. .venv/bin/activate
poetry install
'';
}