about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pydevd/default.nix
blob: 8cb99dd9806ff2794939be2cce04705ab0fc767d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
  stdenv,
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  numpy,
  psutil,
  pytest-xdist,
  pytestCheckHook,
  pythonAtLeast,
  pythonOlder,
  trio,
  untangle,
}:

buildPythonPackage rec {
  pname = "pydevd";
  version = "3.0.3";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "fabioz";
    repo = "PyDev.Debugger";
    rev = "pydev_debugger_${lib.replaceStrings [ "." ] [ "_" ] version}";
    hash = "sha256-aylmLN7lVUza2lt2K48rJsx3XatXPgPjcmPZ05raLX0=";
  };

  __darwinAllowLocalNetworking = true;

  build-system = [ setuptools ];

  nativeCheckInputs = [
    numpy
    psutil
    pytest-xdist
    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_step_next_step_in_multi_threads"
      "test_tracing_basic"
      "test_tracing_other_threads"
      # subprocess.CalledProcessError
      "test_find_main_thread_id"
    ]
    ++ lib.optionals (pythonAtLeast "3.12") [
      "test_case_handled_and_unhandled_exception_generator"
      "test_case_stop_async_iteration_exception"
      "test_case_unhandled_exception_generator"
      "test_function_breakpoints_async"
      # raise segmentation fault
      # https://github.com/fabioz/PyDev.Debugger/issues/269
      "test_evaluate_expression"
    ]
    ++ lib.optionals stdenv.isDarwin [
      "test_multiprocessing_simple"
      "test_evaluate_exception_trace"
    ];

  pythonImportsCheck = [ "pydevd" ];

  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 ];
    mainProgram = "pydevd";
  };
}