summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/alcotest/lwt.nix
blob: f005421a6fc88cddfbafcef0f25b3a7ff5246323 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, buildDunePackage, alcotest, logs, ocaml_lwt }:

buildDunePackage {
  pname = "alcotest-lwt";

  inherit (alcotest) version src;

  propagatedBuildInputs = [ alcotest logs ocaml_lwt ];

  doCheck = true;

  meta = alcotest.meta // {
    description = "Lwt-based helpers for Alcotest";
  };

}