python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / cohttp / lwt-unix.nix
blob2886cac1c7b10026d387f0af40f6872897094051
1 { lib, buildDunePackage, cohttp-lwt
2 , conduit-lwt-unix, conduit-lwt, ppx_sexp_conv
3 , cmdliner, fmt, logs, magic-mime
4 , ounit
5 , cacert
6 }:
8 buildDunePackage {
9   pname = "cohttp-lwt-unix";
10   inherit (cohttp-lwt) version src;
12   buildInputs = [ cmdliner ppx_sexp_conv ];
14   propagatedBuildInputs = [
15     cohttp-lwt conduit-lwt conduit-lwt-unix fmt logs magic-mime
16   ];
18   # TODO(@sternenseemann): fail for unknown reason
19   # https://github.com/mirage/ocaml-cohttp/issues/675#issuecomment-830692742
20   doCheck = false;
21   checkInputs = [ ounit cacert ];
23   meta = cohttp-lwt.meta // {
24     description = "CoHTTP implementation for Unix and Windows using Lwt";
25   };