0eeabdeb66
GitOrigin-RevId: c07b471b52be8fbc49a7dc194e9b37a6e19ee04d
28 lines
496 B
Nix
28 lines
496 B
Nix
{ lib
|
|
, fetchFromGitLab
|
|
, buildDunePackage
|
|
, qcheck-alcotest
|
|
, alcotest
|
|
, alcotest-lwt
|
|
, uri
|
|
, 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
|
|
uri
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = tezos-stdlib.meta // {
|
|
description = "Tezos: yet-another local-extension of the OCaml standard library";
|
|
};
|
|
}
|