python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / ff / pbt.nix
blobffd78381127be92d87ab811ddd4da0f9ce27d99d
1 { lib, buildDunePackage, zarith, ff-sig, alcotest }:
3 buildDunePackage {
4   pname = "ff-pbt";
5   inherit (ff-sig) version src;
7   minimalOCamlVersion = "4.08";
9   checkInputs = [
10     alcotest
11   ];
13   doCheck = true;
15   propagatedBuildInputs = [
16     zarith
17     ff-sig
18   ];
20   meta = ff-sig.meta // {
21     description = "Property based testing library for finite fields over the package ff-sig";
22   };