Merge pull request #234074 from mweinelt/trio-websocket-0.10.2

python310Packages.trio-websocket: 0.9.2 -> 0.10.2
This commit is contained in:
Fabian Affolter 2023-05-28 22:23:52 +02:00 committed by GitHub
commit 72e7fa1513
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,8 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, async_generator
, exceptiongroup
, pytest-trio
, pytestCheckHook
, trio
@ -11,17 +12,18 @@
buildPythonPackage rec {
pname = "trio-websocket";
version = "0.9.2";
version = "0.10.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "HyperionGray";
repo = "trio-websocket";
rev = version;
hash = "sha256-8VrpI/pk5IhEvqzo036cnIbJ1Hu3UfQ6GHTNkNJUYvo=";
hash = "sha256-djoTxkIKY52l+WnxL1FwlqrU/zvsLVkPUAHn9BxJ45k=";
};
propagatedBuildInputs = [
async_generator
exceptiongroup
trio
wsproto
];
@ -32,10 +34,25 @@ buildPythonPackage rec {
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 ];
};