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