1{ lib, fetchFromGitHub, buildPythonPackage, jsonschema }: 2 3buildPythonPackage rec { 4 pname = "robotframework"; 5 version = "6.1.1"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "refs/tags/v${version}"; 11 hash = "sha256-vtP0TVkCMrm0CRXlpZvVTBf7yd8+3p+nRArMWyQUn4k="; 12 }; 13 14 nativeCheckInputs = [ 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}