From b4e65fc3d7baa1ffe8dd80320f504bb3c333283a Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sat, 26 Mar 2022 23:19:00 +0100 Subject: [PATCH] haskellPackages.geojson: disable test suite failing to compile --- 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 faf80dc71af3..d185742349c6 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2597,4 +2597,8 @@ self: super: { # Fixes test suite with modern-uri 0.3.4.3, waiting for Stackage LTS to follow suit mmark = doDistribute self.mmark_0_0_7_5; + # Test suite doesn't support hspec 2.8 + # https://github.com/zellige/hs-geojson/issues/29 + geojson = dontCheck super.geojson; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super