python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / cohttp / lwt.nix
blob74fcfcbd4988e8e9719cda03fed265fba7242187
1 { lib, buildDunePackage, cohttp, lwt, uri, ppx_sexp_conv, logs, sexplib0 }:
3 buildDunePackage {
4   pname = "cohttp-lwt";
5   inherit (cohttp)
6     version
7     src
8     ;
10   buildInputs = [ ppx_sexp_conv ];
12   propagatedBuildInputs = [
13     cohttp lwt logs sexplib0 uri
14   ];
16   meta = cohttp.meta // {
17     description = "CoHTTP implementation using the Lwt concurrency library";
18   };