python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / angstrom-async / default.nix
blob8c9f97f81abcd378a9da607f61ab90bd2d6d00d2
1 { lib, fetchFromGitHub, buildDunePackage, angstrom, async }:
3 buildDunePackage rec {
4   pname = "angstrom-async";
6   inherit (angstrom) version useDune2 src;
8   minimumOCamlVersion = "4.04.1";
10   propagatedBuildInputs = [ angstrom async ];
12   doCheck = true;
14   meta = {
15     inherit (angstrom.meta) homepage license;
16     description = "Async support for Angstrom";
17     maintainers = with lib.maintainers; [ romildo ];
18   };