haskellPackages.hspec-api: downgrade to match hspec

This commit is contained in:
sternenseemann 2023-03-22 15:27:28 +01:00
parent 7f663abbc2
commit 521f6aec44
2 changed files with 16 additions and 0 deletions

View File

@ -44,6 +44,8 @@ default-package-overrides:
- shake-cabal < 0.2.2.3
# needed as long as we have pandoc < 3.0, i.e. stackage lts 20
- pandoc-crossref < 0.3.15.0
# Needs to match hspec which is tracked in stackage
- hspec-api < 2.10
extra-packages:
- Cabal == 2.2.* # required for jailbreak-cabal etc.

View File

@ -151497,6 +151497,19 @@ self: {
}) {};
"hspec-api" = callPackage
({ mkDerivation, base, hspec, hspec-core, hspec-discover }:
mkDerivation {
pname = "hspec-api";
version = "2.9.0";
sha256 = "0a260pjz0fyj51wpdnlb5kzrrwzdam2rxr019c5xrl14gg77a007";
libraryHaskellDepends = [ base hspec-core ];
testHaskellDepends = [ base hspec hspec-core ];
testToolDepends = [ hspec-discover ];
description = "A Testing Framework for Haskell";
license = lib.licenses.mit;
}) {};
"hspec-api_2_10_0" = callPackage
({ mkDerivation, base, hspec, hspec-core, hspec-discover }:
mkDerivation {
pname = "hspec-api";
@ -151507,6 +151520,7 @@ self: {
testToolDepends = [ hspec-discover ];
description = "A Testing Framework for Haskell";
license = lib.licenses.mit;
hydraPlatforms = lib.platforms.none;
}) {};
"hspec-attoparsec" = callPackage