python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / containers / data.nix
blob980984c6ec056445eb31fff9d8876e777567dd7a
1 { buildDunePackage, containers
2 , dune-configurator
3 , gen, iter, qcheck-core
4 }:
6 buildDunePackage {
7   pname = "containers-data";
9   inherit (containers) src version doCheck;
11   buildInputs = [ dune-configurator ];
12   checkInputs = [ gen iter qcheck-core ];
14   propagatedBuildInputs = [ containers ];
16   meta = containers.meta // {
17     description = "A set of advanced datatypes for containers";
18   };