python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / alcotest / default.nix
blob5280f90c75ac077a7510ba8cd7d2dd392a053a07
1 { lib, buildDunePackage, fetchurl
2 , astring, cmdliner, fmt, re, stdlib-shims, uutf, ocaml-syntax-shims
3 }:
5 buildDunePackage rec {
6   pname = "alcotest";
7   version = "1.6.0";
9   src = fetchurl {
10     url = "https://github.com/mirage/alcotest/releases/download/${version}/alcotest-${version}.tbz";
11     sha256 = "sha256-/QD5ZoOVh0/zsdfvVm0U78Avp900Ej6yXVk1W+lLIyk=";
12   };
14   nativeBuildInputs = [ ocaml-syntax-shims ];
16   propagatedBuildInputs = [ astring cmdliner fmt re stdlib-shims uutf ];
18   doCheck = true;
20   meta = with lib; {
21     homepage = "https://github.com/mirage/alcotest";
22     description = "A lightweight and colourful test framework";
23     license = licenses.isc;
24     maintainers = [ maintainers.ericbmerritt ];
25   };