python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / qcheck-rely.nix
blob1250dc2d3a71b175f93fe0ca4127539442b59303
1 { qcheck-core, reason, console, rely, ... }:
4   pname = "qcheck-rely";
6   nativeBuildInputs = [
7     reason
8   ];
10   propagatedBuildInputs = [
11     qcheck-core
12     console
13     rely
14   ];
16   meta = {
17     description = "A library containing custom Rely matchers allowing for easily using QCheck with Rely. QCheck is a 'QuickCheck inspired property-based testing for OCaml, and combinators to generate random values to run tests on'";
18     downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/qcheck-rely";
19     broken = true;
20   };