nixpkgs/pkgs/development/ocaml-modules/tezos/test-helpers.nix

34 lines
558 B
Nix
Raw Normal View History

{ 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";
};
}