1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 lxml, 6 robotframework, 7 pytestCheckHook, 8 six, 9}: 10 11buildPythonPackage rec { 12 pname = "robotsuite"; 13 version = "2.3.2"; 14 format = "setuptools"; 15 16 src = fetchPypi { 17 inherit pname version; 18 hash = "sha256-sPmOoR5K+gMfyPk2QMbiDNmWPRcqKrsz6ZPBAKR/3XY="; 19 }; 20 21 propagatedBuildInputs = [ 22 robotframework 23 lxml 24 six 25 ]; 26 27 nativeCheckInputs = [ pytestCheckHook ]; 28 29 meta = with lib; { 30 description = "Python unittest test suite for Robot Framework"; 31 homepage = "https://github.com/collective/robotsuite/"; 32 license = licenses.gpl3Only; 33 }; 34}