2021-04-25 19:44:27 +02:00
|
|
|
{ lib, fetchFromGitHub, buildPythonPackage, jsonschema }:
|
2017-10-29 15:40:13 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-11-09 19:26:09 +08:00
|
|
|
pname = "robotframework";
|
2021-10-16 10:13:39 +00:00
|
|
|
version = "4.1.2";
|
2017-10-29 15:40:13 +01:00
|
|
|
|
2021-04-25 19:44:27 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-10-16 10:13:39 +00:00
|
|
|
sha256 = "0s6lakbd8h1pa4lfdj18sm13gpywszgpcns4hz026a4kam787kby";
|
2017-10-29 15:40:13 +01:00
|
|
|
};
|
|
|
|
|
2021-04-25 19:44:27 +02:00
|
|
|
checkInputs = [ jsonschema ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
python3 utest/run.py
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-10-29 15:40:13 +01:00
|
|
|
description = "Generic test automation framework";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://robotframework.org/";
|
2017-10-29 15:40:13 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
|
|
};
|
|
|
|
}
|