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

buildDunePackage {
  pname = "alcotest-lwt";

  inherit (alcotest) version src;

  propagatedBuildInputs = [ alcotest logs lwt fmt ];

  doCheck = true;
  checkInputs = [ re cmdliner ];

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

}