From 02def6b1a0d673c55babf1debbe69e4445a5f384 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Wed, 17 May 2023 23:50:11 +0200 Subject: [PATCH] haskellPackages.tasty-sugar: allow tasty-hedgehog 1.3.* --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 452220e01299..3a30602cf776 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -729,6 +729,10 @@ self: super: { # https://github.com/commercialhaskell/stackage/issues/6584#issuecomment-1326522815 tasty-discover = assert super.tasty-discover.version == "4.2.2"; dontCheck super.tasty-discover; + # Too strict lower bound on tasty-hedgehog + # https://github.com/qfpl/tasty-hedgehog/issues/70 + tasty-sugar = doJailbreak super.tasty-sugar; + # Known issue with nondeterministic test suite failure # https://github.com/nomeata/tasty-expected-failure/issues/21 tasty-expected-failure = dontCheck super.tasty-expected-failure;