1{ lib 2, buildPythonPackage 3, fetchPypi 4, lxml 5, robotframework 6, pytestCheckHook 7, six 8}: 9 10buildPythonPackage rec { 11 pname = "robotsuite"; 12 version = "2.3.2"; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-sPmOoR5K+gMfyPk2QMbiDNmWPRcqKrsz6ZPBAKR/3XY="; 17 }; 18 19 propagatedBuildInputs = [ 20 robotframework 21 lxml 22 six 23 ]; 24 25 nativeCheckInputs = [ 26 pytestCheckHook 27 ]; 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}