From 18c9400fc9fd27ca7bd050d9f52430b7068b9316 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Mon, 5 Jan 2026 15:59:23 -0800 Subject: [PATCH] python3Packages.pydevd: 3.3.0 -> 3.4.1 Also disabled on python3.14 due to current incompatibility. DIFF: https://github.com/fabioz/PyDev.Debugger/compare/pydev_debugger_3_3_0...pydev_debugger_3_4_1 --- .../python-modules/pydevd/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/pydevd/default.nix b/pkgs/development/python-modules/pydevd/default.nix index 47280989ba08..8e7bda0f9008 100644 --- a/pkgs/development/python-modules/pydevd/default.nix +++ b/pkgs/development/python-modules/pydevd/default.nix @@ -10,25 +10,25 @@ pytest-xdist, pytestCheckHook, pythonAtLeast, - pythonOlder, trio, untangle, }: buildPythonPackage rec { pname = "pydevd"; - version = "3.3.0"; + version = "3.4.1"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "fabioz"; repo = "PyDev.Debugger"; - rev = "pydev_debugger_${lib.replaceStrings [ "." ] [ "_" ] version}"; - hash = "sha256-V5pM0xnMFnpR1oK0purHFCV3wu+4fOmd72kmy7pVeyk="; + tag = "pydev_debugger_${lib.replaceStrings [ "." ] [ "_" ] version}"; + hash = "sha256-srcYeN4IsnX/B0AWLynr62UC5o+DcjnUrGjcTpvHTCM="; }; + # https://github.com/fabioz/PyDev.Debugger/issues/316 + disabled = pythonAtLeast "3.14"; + postPatch = '' sed -i '/addopts/d' pytest.ini ''; @@ -49,6 +49,10 @@ buildPythonPackage rec { untangle ]; + enabledTestPaths = [ + "tests/" + ]; + disabledTests = [ # Require network connection "test_completion_sockets_and_messages"