python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / metrics / influx.nix
blobcca344f991c2cb9bf21d0b32c1c63538f14465b1
1 { buildDunePackage, metrics
2 , duration, fmt, lwt
3 }:
5 buildDunePackage rec {
6   pname = "metrics-influx";
7   inherit (metrics) version src;
9   propagatedBuildInputs = [ duration fmt lwt metrics ];
11   meta = metrics.meta // {
12     description = "Influx reporter for the Metrics library";
13   };