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