python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / alcotest / mirage.nix
blobdcf6533cdab13e6286c25216439502617edd03dd
1 { lib, buildDunePackage, alcotest, lwt, logs, mirage-clock, duration }:
3 buildDunePackage {
4   pname = "alcotest-mirage";
6   inherit (alcotest) version src;
8   propagatedBuildInputs = [ alcotest lwt logs mirage-clock duration ];
10   doCheck = true;
12   meta = alcotest.meta // {
13     description = "Mirage implementation for Alcotest";
14     maintainers = with lib.maintainers; [ ulrikstrid anmonteiro ];
15   };