clan-vm-manager/devshell: set PYTHONBREAKPOINT with nix

This commit is contained in:
Jörg Thalheim
2023-11-29 11:29:58 +01:00
parent a6b035279e
commit 50bf7dbaeb

View File

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