{ lib, fetchPypi, buildPythonPackage }: buildPythonPackage rec { pname = "robotframework"; version = "4.0"; src = fetchPypi { inherit pname version; sha256 = "a02a6f4af3b0830e4396058694c333cb63eb47f50acf6723be34f0f7a4d73ad7"; extension = "zip"; }; meta = with lib; { description = "Generic test automation framework"; homepage = "https://robotframework.org/"; license = licenses.asl20; maintainers = with maintainers; [ bjornfor ]; }; }