blob: 150a62bc9ce11fa44f1dc4b8ce97f6865aeb8db5 (
plain)
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
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
exceptiongroup,
pytest-trio,
pytestCheckHook,
trio,
trustme,
wsproto,
}:
buildPythonPackage rec {
pname = "trio-websocket";
version = "0.12.2";
pyproject = true;
src = fetchFromGitHub {
owner = "HyperionGray";
repo = "trio-websocket";
rev = version;
hash = "sha256-TGFf4WUeZDrjp/UiQ9O/GoaK5BRC2aaGZVPfqZ4Ip9I=";
};
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.hostPlatform.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 = {
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 = lib.licenses.mit;
maintainers = [ ];
};
}
|