python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / carton / lwt.nix
blob2aeee63dbf1eae77d38508e99dd3183a7c3016ff
1 { buildDunePackage, carton
2 , lwt, decompress, optint, bigstringaf
3 , alcotest, alcotest-lwt, cstruct, fmt, logs
4 , mirage-flow, result, rresult, bigarray-compat
5 , ke, base64, bos, checkseum, digestif, fpath, mmap
6 , stdlib-shims
7 , git-binary # pkgs.git
8 }:
10 buildDunePackage {
11   pname = "carton-lwt";
13   inherit (carton) version src postPatch;
15   propagatedBuildInputs = [
16     carton
17     lwt
18     decompress
19     optint
20     bigstringaf
21   ];
23   doCheck = true;
24   checkInputs = [
25     git-binary
26     alcotest
27     alcotest-lwt
28     cstruct
29     fmt
30     logs
31     mirage-flow
32     result
33     rresult
34     bigarray-compat
35     ke
36     base64
37     bos
38     checkseum
39     digestif
40     fpath
41     mmap
42     stdlib-shims
43   ];
45   inherit (carton) meta;