9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
59 lines
1.3 KiB
Nix
59 lines
1.3 KiB
Nix
{ 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; [ SuperSandro2000 ];
|
|
};
|
|
}
|