about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/base-test-helpers.nix
blob: d9a8307bd3058baa7f693caf7b5e2469af0e89e6 (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
26
27
28
29
30
31
32
{ lib
, buildDunePackage
, alcotest
, alcotest-lwt
, tezos-base
, tezos-event-logging-test-helpers
, tezos-stdlib
, tezos-test-helpers
}:

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

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

  checkInputs = [
    tezos-test-helpers
  ];

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos: base test helpers";
  };
}