python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-crypto / pk.nix
blob0793bf5c4f39221474632a4a1625bd4b3e8880e6
1 { buildDunePackage, ounit2, randomconv, mirage-crypto, mirage-crypto-rng
2 , cstruct, sexplib0, zarith, eqaf, gmp }:
4 buildDunePackage rec {
5   pname = "mirage-crypto-pk";
7   inherit (mirage-crypto) version src;
9   buildInputs = [ gmp ];
10   propagatedBuildInputs = [ cstruct mirage-crypto mirage-crypto-rng
11                             zarith eqaf sexplib0 ];
13   strictDeps = !doCheck;
15   doCheck = true;
16   checkInputs = [ ounit2 randomconv ];
18   meta = mirage-crypto.meta // {
19     description = "Simple public-key cryptography for the modern age";
20   };