about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-12 02:22:08 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-12 18:25:15 +0100
commit165e5e1ae4ea896ded612e21da8efc21980b362e (patch)
tree33fb15b1cc8eac5c5134a627b04183e217098723
parent44fd7317aeb4ed7557a38af5e6cd1a7ecc589ebc (diff)
python312Packages.asks: unstuck tests
-rw-r--r--pkgs/development/python-modules/asks/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/asks/default.nix b/pkgs/development/python-modules/asks/default.nix
index 8be9a9b21160a..86c024f0e12db 100644
--- a/pkgs/development/python-modules/asks/default.nix
+++ b/pkgs/development/python-modules/asks/default.nix
@@ -1,5 +1,6 @@
 { lib
 , buildPythonPackage
+, pythonAtLeast
 , pythonOlder
 , fetchFromGitHub
 , anyio
@@ -39,6 +40,12 @@ buildPythonPackage rec {
     trio
   ];
 
+  disabledTests = lib.optionals (pythonAtLeast "3.12") [
+    # stuck in threading waiter.acquire()
+    "test_https_get"
+    "test_https_get_checks_cert"
+  ];
+
   pythonImportsCheck = [ "asks" ];
 
   meta = {