python312Packages.trio-websocket: 0.10.2 -> 0.11.1
https://github.com/python-trio/trio-websocket/blob/0.11.1/CHANGELOG.md And disable failing tests due to trio 0.25.0 upgrade.
This commit is contained in:
@@ -2,6 +2,8 @@
|
|||||||
, stdenv
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
, setuptools
|
||||||
, exceptiongroup
|
, exceptiongroup
|
||||||
, pytest-trio
|
, pytest-trio
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
@@ -12,20 +14,25 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "trio-websocket";
|
pname = "trio-websocket";
|
||||||
version = "0.10.2";
|
version = "0.11.1";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "HyperionGray";
|
owner = "HyperionGray";
|
||||||
repo = "trio-websocket";
|
repo = "trio-websocket";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-djoTxkIKY52l+WnxL1FwlqrU/zvsLVkPUAHn9BxJ45k=";
|
hash = "sha256-ddLbYkb1m9zRjv3Lb7YwUzj26gYbK4nYN6jN+FAuiOs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
build-system = [
|
||||||
exceptiongroup
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
trio
|
trio
|
||||||
wsproto
|
wsproto
|
||||||
|
] ++ lib.optionals (pythonOlder "3.11") [
|
||||||
|
exceptiongroup
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
@@ -34,7 +41,16 @@ buildPythonPackage rec {
|
|||||||
trustme
|
trustme
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTests = lib.optionals stdenv.isDarwin [
|
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.isDarwin [
|
||||||
# Failed: DID NOT RAISE <class 'ValueError'>
|
# Failed: DID NOT RAISE <class 'ValueError'>
|
||||||
"test_finalization_dropped_exception"
|
"test_finalization_dropped_exception"
|
||||||
# Timing related
|
# Timing related
|
||||||
|
|||||||
Reference in New Issue
Block a user