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
This commit is contained in:
Sarah Clark
2026-01-05 16:18:55 -08:00
parent 1ec3eafdaa
commit 18c9400fc9
@@ -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"