1{ lib, fetchFromGitHub, buildPythonPackage, jsonschema }: 2 3buildPythonPackage rec { 4 pname = "robotframework"; 5 version = "5.0.1"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "refs/tags/v${version}"; 11 sha256 = "sha256-aJUXqY6OFlbdLIr5Qpg27mGFm6hD+WvCrqXmf204WUo="; 12 }; 13 14 checkInputs = [ jsonschema ]; 15 16 checkPhase = '' 17 python3 utest/run.py 18 ''; 19 20 meta = with lib; { 21 description = "Generic test automation framework"; 22 homepage = "https://robotframework.org/"; 23 license = licenses.asl20; 24 maintainers = with maintainers; [ bjornfor ]; 25 }; 26}