{ lib, fetchFromGitHub, buildPythonPackage, jsonschema }: buildPythonPackage rec { pname = "robotframework"; version = "4.0.3"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; sha256 = "1wqz7szbq2g3kkm7frwik4jb5m7517306sz8nxx8hxaw4n6y1i5d"; }; checkInputs = [ jsonschema ]; checkPhase = '' python3 utest/run.py ''; meta = with lib; { description = "Generic test automation framework"; homepage = "https://robotframework.org/"; license = licenses.asl20; maintainers = with maintainers; [ bjornfor ]; }; }