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