about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/robotframework-selenium2library/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/robotframework-selenium2library/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/robotframework-selenium2library/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/robotframework-selenium2library/default.nix b/nixpkgs/pkgs/development/python-modules/robotframework-selenium2library/default.nix
new file mode 100644
index 000000000000..67f04f4f9919
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/robotframework-selenium2library/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildPythonPackage, fetchPypi, robotframework-seleniumlibrary }:
+
+buildPythonPackage rec {
+  version = "3.0.0";
+  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 = with stdenv.lib; {
+    description = "Web testing library for Robot Framework";
+    homepage = https://github.com/robotframework/Selenium2Library;
+    license = licenses.asl20;
+    maintainers = [ maintainers.marsam ];
+  };
+
+}