mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
2db064d028
ocamlPackages.lwt-canceler: 0.2 -> 0.3 ocamlPackages.json-data-encoding: 0.8 -> 0.10 ocamlPackages.data-encoding: 0.2.0 -> 0.4.0 ocamlPackages.ff-sig, ff-pbt: init at 0.6.1 ocamlPacakges.bls12-381: 0.3.15 -> 0.4.2 Co-authored-by: Vincent Laporte <vbgl@users.noreply.github.com>
34 lines
558 B
Nix
34 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";
|
|
};
|
|
}
|