From 73d9158d70fc895504c8b99e9bb79378cf19ca6e Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 26 Dec 2021 12:28:33 +0100 Subject: [PATCH] haskellPackages.hpack-dhall: disable tests due to outdated test data --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 3cae425965a6..e79f3d3902f2 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2225,4 +2225,9 @@ self: super: { ] ++ drv.testFlags or []; }) super.aeson-quick; + # golden files expect an old version of hpack, so tests fail intermittently + # TODO: maybe disable golden test suite altogether? this will happen again as + # hpack emits its version into the generated files… + hpack-dhall = assert super.hpack-dhall.version == "0.5.3"; dontCheck super.hpack-dhall; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super