about summary refs log tree commit diff
path: root/pkgs/development/python-modules/robotsuite/default.nix
blob: 8e51b840942199ef2448fe87280dc7e29b5c966c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, buildPythonPackage
, fetchPypi
, unittest2
, lxml
, robotframework
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "robotsuite";
  version = "2.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-iugVKUPl6HTTO8K1EbSqAk1fl/fsEPoOcsOnnAgcEas=";
  };

  buildInputs = [
    unittest2
  ];

  propagatedBuildInputs = [
    robotframework
    lxml
  ];

  checkInputs = [
    pytestCheckHook
  ];

  meta = with lib; {
    description = "Python unittest test suite for Robot Framework";
    homepage = "https://github.com/collective/robotsuite/";
    license = licenses.gpl3Only;
  };
}