about summary refs log tree commit diff
path: root/pkgs/development/python-modules/trio-websocket/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/trio-websocket/default.nix')
-rw-r--r--pkgs/development/python-modules/trio-websocket/default.nix67
1 files changed, 41 insertions, 26 deletions
diff --git a/pkgs/development/python-modules/trio-websocket/default.nix b/pkgs/development/python-modules/trio-websocket/default.nix
index 98fdcfae0c160..87bc67368d560 100644
--- a/pkgs/development/python-modules/trio-websocket/default.nix
+++ b/pkgs/development/python-modules/trio-websocket/default.nix
@@ -1,32 +1,36 @@
-{ lib
-, stdenv
-, buildPythonPackage
-, fetchFromGitHub
-, exceptiongroup
-, pytest-trio
-, pytestCheckHook
-, trio
-, trustme
-, wsproto
+{
+  lib,
+  stdenv,
+  buildPythonPackage,
+  fetchFromGitHub,
+  pythonOlder,
+  setuptools,
+  exceptiongroup,
+  pytest-trio,
+  pytestCheckHook,
+  trio,
+  trustme,
+  wsproto,
 }:
 
 buildPythonPackage rec {
   pname = "trio-websocket";
-  version = "0.10.2";
-  format = "setuptools";
+  version = "0.11.1";
+  pyproject = true;
 
   src = fetchFromGitHub {
     owner = "HyperionGray";
     repo = "trio-websocket";
     rev = version;
-    hash = "sha256-djoTxkIKY52l+WnxL1FwlqrU/zvsLVkPUAHn9BxJ45k=";
+    hash = "sha256-ddLbYkb1m9zRjv3Lb7YwUzj26gYbK4nYN6jN+FAuiOs=";
   };
 
-  propagatedBuildInputs = [
-    exceptiongroup
+  build-system = [ setuptools ];
+
+  dependencies = [
     trio
     wsproto
-  ];
+  ] ++ lib.optionals (pythonOlder "3.11") [ exceptiongroup ];
 
   nativeCheckInputs = [
     pytest-trio
@@ -34,16 +38,27 @@ 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"
-  ];
+  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'>
+      "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;