587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
34 lines
546 B
Nix
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;
|
|
};
|
|
}
|