blob: 1eda5b1537ac915997be2d1a38aec1523d13bcfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
jsonschema,
python,
}:
buildPythonPackage rec {
pname = "robotframework";
version = "7.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "robotframework";
repo = "robotframework";
tag = "v${version}";
hash = "sha256-AnYIdRRwYUsgaOZw+vcpDB69DOg13kU1jA3ObRDLyWk=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ jsonschema ];
checkPhase = ''
${python.interpreter} utest/run.py
'';
meta = {
changelog = "https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-${version}.rst";
description = "Generic test automation framework";
homepage = "https://robotframework.org/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bjornfor ];
};
}
|