python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / repr / ppx.nix
blob1eb762563621e9f7e4427593fe657339f356eaba
1 { lib, buildDunePackage, ppx_deriving, ppxlib, repr, alcotest, hex }:
3 buildDunePackage {
4   pname = "ppx_repr";
6   inherit (repr) src version strictDeps;
8   propagatedBuildInputs = [
9     ppx_deriving
10     ppxlib
11     repr
12   ];
14   doCheck = false; # tests fail with ppxlib >= 0.23.0
15   checkInputs = [
16     alcotest
17     hex
18   ];
20   meta = repr.meta // {
21     description = "PPX deriver for type representations";
22   };