2019-12-09 11:28:56 +01:00
|
|
|
{ lib, buildDunePackage, alcotest, logs, ocaml_lwt }:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "alcotest-lwt";
|
|
|
|
|
2020-12-05 17:27:48 +01:00
|
|
|
inherit (alcotest) version src useDune2;
|
2019-12-09 11:28:56 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ alcotest logs ocaml_lwt ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = alcotest.meta // {
|
|
|
|
description = "Lwt-based helpers for Alcotest";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|