python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / pp / default.nix
blob7602d7024524d0aaff5dd2522c4edef0598d7005
1 { buildDunePackage
2 , fetchzip
3 , ppx_expect
4 , lib
5 }:
7 buildDunePackage rec {
8   pname = "pp";
9   version = "1.1.2";
11   src = fetchzip {
12     url = "https://github.com/ocaml-dune/pp/releases/download/${version}/pp-${version}.tbz";
13     sha256 = "1l1im054pxrkj7zk8m6yj4qfdpxkajpjfvy818ggf0j4nxkaihc5";
14   };
16   useDune2 = true;
17   minimalOCamlVersion = "4.08";
19   checkInputs = [ ppx_expect ];
20   doCheck = true;
22   meta = with lib; {
23     description = "A an alternative pretty printing library to the Format module of the OCaml standard library";
24     license = licenses.mit;
25     platforms = platforms.unix;
26     maintainers = with maintainers; [ ];
27   };