depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tezt/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

34 lines
546 B
Nix

{ lib
, fetchFromGitLab
, buildDunePackage
, clap
, ezjsonm
, lwt
, re
}:
buildDunePackage rec {
pname = "tezt";
version = "4.0.0";
minimalOCamlVersion = "4.12";
src = fetchFromGitLab {
owner = "nomadic-labs";
repo = pname;
rev = version;
hash = "sha256-waFjE/yR+XAJOew1YsCnbvsJR8oe9gflyVj4yXAvNuM=";
};
propagatedBuildInputs = [
clap
ezjsonm
lwt
re
];
meta = {
description = "Test framework for unit tests, integration tests, and regression tests";
license = lib.licenses.mit;
};
}