2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, python, robotframework }:
|
2018-12-08 17:55:49 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
version = "1.3";
|
|
|
|
pname = "robotstatuschecker";
|
|
|
|
|
|
|
|
# no tests included in PyPI tarball
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "robotframework";
|
|
|
|
repo = "statuschecker";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0rppwwpp4djn5c43x7icwslnxbzcfnnn3c6awpg1k97j69d2nmln";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ robotframework ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} test/run.py
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-12-08 17:55:49 +00:00
|
|
|
description = "A tool for checking that Robot Framework test cases have expected statuses and log messages";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/robotframework/statuschecker";
|
2018-12-08 17:55:49 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
|
|
|
}
|