2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
pythonOlder,
|
|
|
|
setuptools,
|
|
|
|
exceptiongroup,
|
|
|
|
pytest-trio,
|
|
|
|
pytestCheckHook,
|
|
|
|
trio,
|
|
|
|
trustme,
|
|
|
|
wsproto,
|
2022-06-26 10:26:21 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "trio-websocket";
|
2024-05-15 15:35:15 +00:00
|
|
|
version = "0.11.1";
|
|
|
|
pyproject = true;
|
2022-06-26 10:26:21 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "HyperionGray";
|
|
|
|
repo = "trio-websocket";
|
|
|
|
rev = version;
|
2024-05-15 15:35:15 +00:00
|
|
|
hash = "sha256-ddLbYkb1m9zRjv3Lb7YwUzj26gYbK4nYN6jN+FAuiOs=";
|
2022-06-26 10:26:21 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
build-system = [ setuptools ];
|
2024-05-15 15:35:15 +00:00
|
|
|
|
|
|
|
dependencies = [
|
2022-06-26 10:26:21 +00:00
|
|
|
trio
|
|
|
|
wsproto
|
2024-06-05 15:53:02 +00:00
|
|
|
] ++ lib.optionals (pythonOlder "3.11") [ exceptiongroup ];
|
2022-06-26 10:26:21 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-06-26 10:26:21 +00:00
|
|
|
pytest-trio
|
|
|
|
pytestCheckHook
|
|
|
|
trustme
|
|
|
|
];
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
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"
|
|
|
|
]
|
2024-09-26 11:04:55 +00:00
|
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
2024-06-05 15:53:02 +00:00
|
|
|
# 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"
|
|
|
|
];
|
2023-07-15 17:15:38 +00:00
|
|
|
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2022-06-26 10:26:21 +00:00
|
|
|
pythonImportsCheck = [ "trio_websocket" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2023-07-15 17:15:38 +00:00
|
|
|
changelog = "https://github.com/HyperionGray/trio-websocket/blob/${version}/CHANGELOG.md";
|
2022-06-26 10:26:21 +00:00
|
|
|
description = "WebSocket client and server implementation for Python Trio";
|
2023-07-15 17:15:38 +00:00
|
|
|
homepage = "https://github.com/HyperionGray/trio-websocket";
|
2022-06-26 10:26:21 +00:00
|
|
|
license = licenses.mit;
|
2024-07-31 10:19:44 +00:00
|
|
|
maintainers = [ ];
|
2022-06-26 10:26:21 +00:00
|
|
|
};
|
|
|
|
}
|