blob: 98fdcfae0c160d8a9409ee638eb94a252ef21040 (
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
|
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, exceptiongroup
, pytest-trio
, pytestCheckHook
, trio
, trustme
, wsproto
}:
buildPythonPackage rec {
pname = "trio-websocket";
version = "0.10.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "HyperionGray";
repo = "trio-websocket";
rev = version;
hash = "sha256-djoTxkIKY52l+WnxL1FwlqrU/zvsLVkPUAHn9BxJ45k=";
};
propagatedBuildInputs = [
exceptiongroup
trio
wsproto
];
nativeCheckInputs = [
pytest-trio
pytestCheckHook
trustme
];
disabledTests = 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; [ ];
};
}
|