python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / ringo / default.nix
blob87a64beaa50d9f1e8b096dbfbf5b27862aa70d8a
1 { lib, fetchFromGitLab, buildDunePackage }:
3 buildDunePackage rec {
4   pname = "ringo";
5   version = "0.9";
7   src = fetchFromGitLab {
8     owner = "nomadic-labs";
9     repo = "ringo";
10     rev = "v${version}";
11     sha256 = "sha256-lPb+WrRsmtOow9BX9FW4HoILlsTuuMrVlK0XPcXWZ9U=";
12   };
14   minimalOCamlVersion = "4.05";
16   doCheck = true;
18   # If we just run the test as is it will try to test ringo-lwt
19   checkPhase = "dune build @test/runtest";
21   meta = {
22     description = "Caches (bounded-size key-value stores) and other bounded-size stores";
23     license = lib.licenses.mit;
24     maintainers = [ lib.maintainers.ulrikstrid ];
25   };