From a3699721c0b1c34e9fe4d65c33557f5e7af3ce82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 21 Aug 2024 15:00:04 +0200 Subject: [PATCH] remove ipdb again ipdb doesn't work with capsys and breakpoint --- pkgs/clan-app/shell.nix | 3 --- pkgs/clan-cli/shell.nix | 3 --- pkgs/clan-vm-manager/shell.nix | 3 --- 3 files changed, 9 deletions(-) diff --git a/pkgs/clan-app/shell.nix b/pkgs/clan-app/shell.nix index 74878aac6..36e034d7f 100644 --- a/pkgs/clan-app/shell.nix +++ b/pkgs/clan-app/shell.nix @@ -21,7 +21,6 @@ let ++ (with python3.pkgs; [ rope mypy - ipdb setuptools wheel pip @@ -48,8 +47,6 @@ mkShell { desktop-file-utils # verify desktop files ]); - PYTHONBREAKPOINT = "ipdb.set_trace"; - shellHook = '' export GIT_ROOT=$(git rev-parse --show-toplevel) export PKG_ROOT=$GIT_ROOT/pkgs/clan-app diff --git a/pkgs/clan-cli/shell.nix b/pkgs/clan-cli/shell.nix index 168a59649..e52bd8a5b 100644 --- a/pkgs/clan-cli/shell.nix +++ b/pkgs/clan-cli/shell.nix @@ -15,7 +15,6 @@ let rope setuptools wheel - ipdb pip ]); in @@ -27,8 +26,6 @@ mkShell { inputsFrom = [ self'.devShells.default ]; - PYTHONBREAKPOINT = "ipdb.set_trace"; - CLAN_STATIC_PROGRAMS = lib.concatStringsSep ":" ( lib.attrNames clan-cli-full.passthru.runtimeDependenciesAsSet ); diff --git a/pkgs/clan-vm-manager/shell.nix b/pkgs/clan-vm-manager/shell.nix index 1b00bd998..6b6c3c658 100644 --- a/pkgs/clan-vm-manager/shell.nix +++ b/pkgs/clan-vm-manager/shell.nix @@ -19,7 +19,6 @@ let ++ (with python3.pkgs; [ rope mypy - ipdb setuptools wheel pip @@ -41,8 +40,6 @@ mkShell { desktop-file-utils # verify desktop files ]); - PYTHONBREAKPOINT = "ipdb.set_trace"; - shellHook = '' export GIT_ROOT=$(git rev-parse --show-toplevel) export PKG_ROOT=$GIT_ROOT/pkgs/clan-vm-manager