about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/event-logging-test-helpers.nix
blob: 0407277bde99763187bf50a0fd6bf522c3280c9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildDunePackage
, alcotest
, tezos-event-logging
, tezos-stdlib
, tezos-test-helpers
}:

buildDunePackage {
  pname = "tezos-event-logging-test-helpers";
  inherit (tezos-stdlib) version useDune2;
  src = "${tezos-stdlib.base_src}/src/lib_event_logging/test_helpers/";

  propagatedBuildInputs = [
    alcotest
    tezos-event-logging
    tezos-test-helpers
  ];

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos: test helpers for the event logging library";
  };
}