10 buildPythonPackage rec {
11 pname = "robotstatuschecker";
15 # no tests included in PyPI tarball
16 src = fetchFromGitHub {
17 owner = "robotframework";
18 repo = "statuschecker";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-yW6353gDwo/IzoWOB8oelaS6IUbvTtwwDT05yD7w6UA=";
24 # https://github.com/robotframework/statuschecker/issues/46
25 substituteInPlace test/tests.robot \
26 --replace-fail BuiltIn.Log Log
29 nativeBuildInputs = [ setuptools ];
31 propagatedBuildInputs = [ robotframework ];
36 ${python.interpreter} test/run.py
42 description = "Tool for checking that Robot Framework test cases have expected statuses and log messages";
43 homepage = "https://github.com/robotframework/statuschecker";
44 license = licenses.asl20;