haskellPackages: Fixup hspec minor version in overrides

This commit is contained in:
Robert Hensing 2023-11-10 18:44:08 +01:00
parent 030de47bf7
commit 99a02beb04

View File

@ -59,7 +59,7 @@ self: super: {
# just upgrade to an hspec version without the offending dependency.
hspec-core = cself.hspec-core_2_11_7;
hspec-discover = cself.hspec-discover_2_11_7;
hspec = cself.hspec_2_11_6;
hspec = cself.hspec_2_11_7;
# hspec-discover and hspec-core depend on hspec-meta for testing which
# we need to avoid since it depends on ghc as well. Since hspec*_2_11*
@ -194,7 +194,7 @@ self: super: {
# 2023-08-09: Jailbreak because of vector < 0.13
# 2023-11-09: don't check because of https://github.com/tweag/monad-bayes/pull/326
monad-bayes = dontCheck (doJailbreak (super.monad-bayes.override {
hspec = self.hspec_2_11_6;
hspec = self.hspec_2_11_7;
}));
# Disable tests failing on odd floating point numbers generated by QuickCheck 2.14.3
@ -1671,7 +1671,7 @@ self: super: {
servant-openapi3 = dontCheck super.servant-openapi3;
# Give latest hspec correct dependency versions without overrideScope
hspec_2_11_6 = doDistribute (super.hspec_2_11_6.override {
hspec_2_11_7 = doDistribute (super.hspec_2_11_7.override {
hspec-discover = self.hspec-discover_2_11_7;
hspec-core = self.hspec-core_2_11_7;
});