about summary refs log tree commit diff
path: root/pkgs/development/python-modules/trio-websocket/default.nix
blob: 8ffa3de60fc3ced4e74204ac9d9600e2f2d0f734 (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
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, exceptiongroup
, pytest-trio
, pytestCheckHook
, trio
, trustme
, wsproto
}:

buildPythonPackage rec {
  pname = "trio-websocket";
  version = "0.11.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "HyperionGray";
    repo = "trio-websocket";
    rev = version;
    hash = "sha256-ddLbYkb1m9zRjv3Lb7YwUzj26gYbK4nYN6jN+FAuiOs=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    trio
    wsproto
  ] ++ lib.optionals (pythonOlder "3.11") [
    exceptiongroup
  ];

  nativeCheckInputs = [
    pytest-trio
    pytestCheckHook
    trustme
  ];

  disabledTests = [
    # https://github.com/python-trio/trio-websocket/issues/187
    "test_handshake_exception_before_accept"
    "test_reject_handshake"
    "test_reject_handshake_invalid_info_status"
    "test_client_open_timeout"
    "test_client_close_timeout"
    "test_client_connect_networking_error"
    "test_finalization_dropped_exception"
  ] ++ lib.optionals stdenv.isDarwin [
    # Failed: DID NOT RAISE <class 'ValueError'>
    "test_finalization_dropped_exception"
    # Timing related
    "test_client_close_timeout"
    "test_cm_exit_with_pending_messages"
    "test_server_close_timeout"
    "test_server_handler_exit"
    "test_server_open_timeout"
  ];

  __darwinAllowLocalNetworking = true;

  pythonImportsCheck = [ "trio_websocket" ];

  meta = with lib; {
    changelog = "https://github.com/HyperionGray/trio-websocket/blob/${version}/CHANGELOG.md";
    description = "WebSocket client and server implementation for Python Trio";
    homepage = "https://github.com/HyperionGray/trio-websocket";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}