clan-vm-manager/devshell: set PYTHONBREAKPOINT with nix
All checks were successful
checks-impure / test (pull_request) Successful in 1m43s
checks / test (pull_request) Successful in 2m25s

This commit is contained in:
Jörg Thalheim 2023-11-29 11:29:58 +01:00
parent ee5a4ea7d9
commit 1497e37d2f

View File

@ -5,11 +5,11 @@ mkShell {
ruff
] ++ clan-vm-manager.nativeBuildInputs;
PYTHONBREAKPOINT = "ipdb.set_trace";
shellHook = ''
ln -sfT ${clan-cli.nixpkgs} ../clan-cli/clan_cli/nixpkgs
export PYTHONBREAKPOINT=ipdb.set_trace
# prepend clan-cli for development
export PYTHONPATH=../clan-cli:$PYTHONPATH
'';