about summary refs log tree commit diff
path: root/pkgs/development/python-modules/asynctest
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-06-19 10:52:03 +0100
committerJörg Thalheim <joerg@thalheim.io>2020-06-19 10:52:03 +0100
commit25b91c2059b04268e70c5d73aac661f85bef48f6 (patch)
tree2a393d0564dc40e9d63636467af916b2a6115f57 /pkgs/development/python-modules/asynctest
parent407897c65a1010ddacab8df5d531ed0db0c3cb1a (diff)
python3.pkgs.asynctest: disable tests on python3.8
Diffstat (limited to 'pkgs/development/python-modules/asynctest')
-rw-r--r--pkgs/development/python-modules/asynctest/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/asynctest/default.nix b/pkgs/development/python-modules/asynctest/default.nix
index d08f4137ba457..d36328d7225b1 100644
--- a/pkgs/development/python-modules/asynctest/default.nix
+++ b/pkgs/development/python-modules/asynctest/default.nix
@@ -17,6 +17,9 @@ buildPythonPackage rec {
       --replace "test_events_watched_outside_test_are_ignored" "xtest_events_watched_outside_test_are_ignored"
   '';
 
+  # https://github.com/Martiusweb/asynctest/issues/132
+  doCheck = pythonOlder "3.8";
+
   checkPhase = ''
     ${python.interpreter} -m unittest test
   '';