From 32d95f4ef119e1e646398a127df041a20ed26840 Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Thu, 11 Apr 2024 13:10:49 +1200 Subject: [PATCH] python3Packages.json5: Disable hypothesis Disables tests which can be flaky, such as `test_object_roundtrip`. Closes #245656. --- pkgs/development/python-modules/json5/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/development/python-modules/json5/default.nix b/pkgs/development/python-modules/json5/default.nix index b244a79114c0..1b071aadb59c 100644 --- a/pkgs/development/python-modules/json5/default.nix +++ b/pkgs/development/python-modules/json5/default.nix @@ -1,6 +1,5 @@ { buildPythonPackage , fetchFromGitHub -, hypothesis , lib , pytestCheckHook }: @@ -18,7 +17,6 @@ buildPythonPackage rec { }; nativeCheckInputs = [ - hypothesis pytestCheckHook ];