1{ lib, fetchFromGitHub, buildPythonPackage, jsonschema }: 2 3buildPythonPackage rec { 4 pname = "robotframework"; 5 version = "4.1.2"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "0s6lakbd8h1pa4lfdj18sm13gpywszgpcns4hz026a4kam787kby"; 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}