python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / paf / le.nix
blob5c07eba3aab0e9310efd265933ecf09a4a690195
1 { lib
2 , buildDunePackage
3 , paf
4 , duration
5 , emile
6 , httpaf
7 , letsencrypt
8 , mirage-stack
9 , mirage-time
10 , tls-mirage
11 , x509
14 buildDunePackage {
15   pname = "paf-le";
17   inherit (paf)
18     version
19     src
20   ;
22   propagatedBuildInputs = [
23     paf
24     duration
25     emile
26     httpaf
27     letsencrypt
28     mirage-stack
29     mirage-time
30     tls-mirage
31     x509
32   ];
34   doCheck = true;
36   meta = paf.meta // {
37     description = "A CoHTTP client with its HTTP/AF implementation";
38   };