about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/tezos/test-helpers.nix
blob: 68a0d841ccf5d90bbe263faa1d1af783e50cd318 (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
33
{ lib
, fetchFromGitLab
, buildDunePackage
, qcheck-alcotest
, alcotest
, alcotest-lwt
, hashcons
, pyml
, uri
, tezos-test-services
, tezos-stdlib
}:

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

  propagatedBuildInputs = [
    qcheck-alcotest
    alcotest
    alcotest-lwt
    hashcons
    pyml
    uri
  ];

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos: yet-another local-extension of the OCaml standard library";
  };
}