8a45d4525b
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
26 lines
586 B
Nix
26 lines
586 B
Nix
{ lib, fetchFromGitHub, buildPythonPackage, jsonschema }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "robotframework";
|
|
version = "5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-AblBSkTCUrYlX4M35IHUIw7j2PGzALbGXpApiJgZlWE=";
|
|
};
|
|
|
|
checkInputs = [ jsonschema ];
|
|
|
|
checkPhase = ''
|
|
python3 utest/run.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Generic test automation framework";
|
|
homepage = "https://robotframework.org/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
};
|
|
}
|