35 lines
546 B
Nix
35 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;
|
||
|
};
|
||
|
}
|