depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tezos/test-helpers.nix
Default email 6064764516 Project import generated by Copybara.
GitOrigin-RevId: 2cf9db0e3d45b9d00f16f2836cb1297bcadc475e
2021-10-14 08:43:12 +08:00

33 lines
558 B
Nix

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