about summary refs log tree commit diff
path: root/pkgs/development/python-modules/robotframework-selenium2library/default.nix
blob: 15fd977936bc87f63d0b927906db5d78207d7735 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, robotframework
, selenium
, docutils
, decorator
}:

buildPythonPackage rec {
  version = "1.6.0";
  pname = "robotframework-selenium2library";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1asdwrpb4s7q08bx641yrh3yicgba14n3hxmsqs58mqf86ignwly";
  };

  # error: invalid command 'test'
  #doCheck = false;

  propagatedBuildInputs = [ robotframework selenium docutils decorator ];

  meta = with stdenv.lib; {
    description = "Web testing library for Robot Framework";
    homepage = http://robotframework.org/;
    license = licenses.asl20;
  };

}