python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / graphql / default.nix
blob5bf61789e83a1d338d66085f6cb21491251d6429
1 { buildDunePackage, alcotest, graphql_parser, rresult, yojson }:
3 buildDunePackage rec {
4   pname = "graphql";
6   inherit (graphql_parser) version src;
8   propagatedBuildInputs = [ graphql_parser rresult yojson ];
10   checkInputs = [ alcotest ];
12   doCheck = true;
14   meta = graphql_parser.meta // {
15     description = "Build GraphQL schemas and execute queries against them";
16   };