blob: 5e3cae9270b538832ac4d4b9ef45c1e570397ba6 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
robotframework-seleniumlibrary,
}:
buildPythonPackage rec {
version = "3.0.0";
format = "setuptools";
pname = "robotframework-selenium2library";
src = fetchPypi {
inherit pname version;
sha256 = "2a8e942b0788b16ded253039008b34d2b46199283461b294f0f41a579c70fda7";
};
# Neither the PyPI tarball nor the repository has tests
doCheck = false;
propagatedBuildInputs = [ robotframework-seleniumlibrary ];
meta = {
description = "Web testing library for Robot Framework";
homepage = "https://github.com/robotframework/Selenium2Library";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|