Merge pull request #92374 from marsam/fix-cachix-build
haskellPackages.{math-functions,mockery}: dontCheck
This commit is contained in:
commit
837e0a8f2d
1 changed files with 6 additions and 0 deletions
|
@ -305,10 +305,16 @@ self: super: {
|
||||||
ldap-client = dontCheck super.ldap-client;
|
ldap-client = dontCheck super.ldap-client;
|
||||||
lensref = dontCheck super.lensref;
|
lensref = dontCheck super.lensref;
|
||||||
lvmrun = disableHardening (dontCheck super.lvmrun) ["format"];
|
lvmrun = disableHardening (dontCheck super.lvmrun) ["format"];
|
||||||
|
math-functions = if pkgs.stdenv.isDarwin
|
||||||
|
then dontCheck super.math-functions # "erf table" test fails on Darwin https://github.com/bos/math-functions/issues/63
|
||||||
|
else super.math-functions;
|
||||||
matplotlib = dontCheck super.matplotlib;
|
matplotlib = dontCheck super.matplotlib;
|
||||||
memcache = dontCheck super.memcache;
|
memcache = dontCheck super.memcache;
|
||||||
metrics = dontCheck super.metrics;
|
metrics = dontCheck super.metrics;
|
||||||
milena = dontCheck super.milena;
|
milena = dontCheck super.milena;
|
||||||
|
mockery = if pkgs.stdenv.isDarwin
|
||||||
|
then overrideCabal super.mockery (drv: { preCheck = "export TRAVIS=true"; }) # darwin doesn't have sub-second resolution https://github.com/hspec/mockery/issues/11
|
||||||
|
else super.mockery;
|
||||||
modular-arithmetic = dontCheck super.modular-arithmetic; # tests require a very old Glob (0.7.*)
|
modular-arithmetic = dontCheck super.modular-arithmetic; # tests require a very old Glob (0.7.*)
|
||||||
nats-queue = dontCheck super.nats-queue;
|
nats-queue = dontCheck super.nats-queue;
|
||||||
netpbm = dontCheck super.netpbm;
|
netpbm = dontCheck super.netpbm;
|
||||||
|
|
Loading…
Reference in a new issue