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