nixpkgs/pkgs/development/ocaml-modules/alcotest/lwt.nix
2023-04-11 06:36:06 +02:00

22 lines
366 B
Nix

{ lib, buildDunePackage, alcotest, logs, lwt, fmt
, re, cmdliner
}:
buildDunePackage {
pname = "alcotest-lwt";
inherit (alcotest) version src;
duneVersion = "3";
propagatedBuildInputs = [ alcotest logs lwt fmt ];
doCheck = true;
checkInputs = [ re cmdliner ];
meta = alcotest.meta // {
description = "Lwt-based helpers for Alcotest";
};
}