mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
pythonPackages.robotstatuschecker: init at 1.3
This commit is contained in:
parent
4a6367e262
commit
f52cb0a6b4
@ -0,0 +1,27 @@
|
||||
{ stdenv, buildPythonPackage, fetchFromGitHub, python, robotframework }:
|
||||
|
||||
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
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A tool for checking that Robot Framework test cases have expected statuses and log messages";
|
||||
homepage = https://github.com/robotframework/statuschecker;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.marsam ];
|
||||
};
|
||||
}
|
@ -3810,6 +3810,8 @@ in {
|
||||
|
||||
robotframework-tools = callPackage ../development/python-modules/robotframework-tools { };
|
||||
|
||||
robotstatuschecker = callPackage ../development/python-modules/robotstatuschecker { };
|
||||
|
||||
robotsuite = callPackage ../development/python-modules/robotsuite { };
|
||||
|
||||
serpent = callPackage ../development/python-modules/serpent { };
|
||||
|
Loading…
Reference in New Issue
Block a user