about summary refs log tree commit diff
path: root/pkgs/development/python-modules/html5lib
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2022-01-04 22:37:04 -0800
committerJonathan Ringer <jonringer117@gmail.com>2022-01-04 22:37:08 -0800
commit24ac7e12359a2137cec1e1aaf162bfab40f7a9be (patch)
tree9a72d40f2326d05b64fb9af9ad9675ebae576bce /pkgs/development/python-modules/html5lib
parent76e8c85e6570211ab284a41b2d98654451a52ea8 (diff)
python310Packages.html5lib: use pytestCheckHook, disable tests
Diffstat (limited to 'pkgs/development/python-modules/html5lib')
-rw-r--r--pkgs/development/python-modules/html5lib/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/html5lib/default.nix b/pkgs/development/python-modules/html5lib/default.nix
index 1172b01951323..08ea5a2b3e98e 100644
--- a/pkgs/development/python-modules/html5lib/default.nix
+++ b/pkgs/development/python-modules/html5lib/default.nix
@@ -5,7 +5,7 @@
 , webencodings
 , mock
 , pytest-expect
-, pytestCheckHook_5
+, pytestCheckHook
 }:
 
 buildPythonPackage rec {
@@ -22,10 +22,12 @@ buildPythonPackage rec {
     webencodings
   ];
 
+  # latest release not compatible with pytest 6
+  doCheck = false;
   checkInputs = [
     mock
     pytest-expect
-    pytestCheckHook_5
+    pytestCheckHook
   ];
 
   meta = {