python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / ff / default.nix
blob5681b33cb7683db8257adef1757d2bc573cbaf8f
1 { lib, buildDunePackage, ff-pbt, ff-sig, zarith, alcotest }:
3 buildDunePackage rec {
4   pname = "ff";
5   inherit (ff-sig) version src;
7   propagatedBuildInputs = [
8     ff-sig
9     zarith
10   ];
12   checkInputs = [
13     alcotest
14     ff-pbt
15   ];
17   doCheck = true;
19   meta = ff-sig.meta // {
20     description = "OCaml implementation of Finite Field operations";
21   };