blob: 110e20d69db598f0711b180c45235d63eb54bbaf (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
lxml,
robotframework,
pytestCheckHook,
six,
}:
buildPythonPackage rec {
pname = "robotsuite";
version = "2.3.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-sPmOoR5K+gMfyPk2QMbiDNmWPRcqKrsz6ZPBAKR/3XY=";
};
propagatedBuildInputs = [
robotframework
lxml
six
];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Python unittest test suite for Robot Framework";
homepage = "https://github.com/collective/robotsuite/";
license = lib.licenses.gpl3Only;
};
}
|