summary refs log tree commit diff
path: root/pkgs/development/python-modules/robotframework-tools/default.nix
blob: 97bc9de0bf757a728fe6979958f3249849b64047 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, robotframework
, moretools
, pathpy
, six
, zetup
, modeled
, pytest
}:

buildPythonPackage rec {
  version = "0.1rc4";
  pname = "robotframework-tools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0377ikajf6c3zcy3lc0kh4w9zmlqyplk2c2hb0yyc7h3jnfnya96";
  };

  nativeBuildInputs = [
    zetup
  ];

  propagatedBuildInputs = [
    robotframework
    moretools
    pathpy
    six
    modeled
  ];

  checkInputs = [
    pytest
  ];

  checkPhase = ''
    # tests require network
    pytest test --ignore test/remote/test_remote.py
  '';

  meta = with stdenv.lib; {
    description = "Python Tools for Robot Framework and Test Libraries";
    homepage = https://bitbucket.org/userzimmermann/robotframework-tools;
    license = licenses.gpl3;
    maintainers = [ maintainers.costrouc ];
  };
}