2022-08-12 12:06:08 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
2023-05-24 13:37:59 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, numpy
|
2022-08-12 12:06:08 +00:00
|
|
|
, psutil
|
2023-05-24 13:37:59 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
2022-08-12 12:06:08 +00:00
|
|
|
, trio
|
2023-05-24 13:37:59 +00:00
|
|
|
, untangle
|
2022-08-12 12:06:08 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pydevd";
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "2.9.6";
|
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.8";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fabioz";
|
|
|
|
repo = "PyDev.Debugger";
|
|
|
|
rev = "pydev_debugger_${lib.replaceStrings ["."] ["_"] version}";
|
2023-05-24 13:37:59 +00:00
|
|
|
hash = "sha256-TDU/V7kY7zVxiP4OVjGqpsRVYplpkgCly2qAOqhZONo=";
|
2022-08-12 12:06:08 +00:00
|
|
|
};
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-08-12 12:06:08 +00:00
|
|
|
numpy
|
|
|
|
psutil
|
|
|
|
pytestCheckHook
|
|
|
|
trio
|
|
|
|
untangle
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
# Require network connection
|
|
|
|
"test_completion_sockets_and_messages"
|
|
|
|
"test_path_translation"
|
|
|
|
"test_attach_to_pid_no_threads"
|
|
|
|
"test_attach_to_pid_halted"
|
|
|
|
"test_remote_debugger_threads"
|
|
|
|
"test_path_translation_and_source_reference"
|
|
|
|
"test_attach_to_pid"
|
|
|
|
"test_terminate"
|
|
|
|
"test_gui_event_loop_custom"
|
|
|
|
# AssertionError: assert '/usr/bin/' == '/usr/bin'
|
|
|
|
# https://github.com/fabioz/PyDev.Debugger/issues/227
|
|
|
|
"test_to_server_and_to_client"
|
|
|
|
# AssertionError pydevd_tracing.set_trace_to_threads(tracing_func) == 0
|
|
|
|
"test_tracing_other_threads"
|
|
|
|
"test_tracing_basic"
|
|
|
|
];
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"pydevd"
|
|
|
|
];
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "PyDev.Debugger (used in PyDev, PyCharm and VSCode Python)";
|
|
|
|
homepage = "https://github.com/fabioz/PyDev.Debugger";
|
|
|
|
license = licenses.epl10;
|
|
|
|
maintainers = with maintainers; [ onny ];
|
|
|
|
};
|
|
|
|
}
|