summary refs log tree commit diff
path: root/pkgs/development/python-modules/robotsuite
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2017-10-29 11:47:54 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2017-10-29 11:51:31 +0100
commit489cdc23fca3562d757295bf9a9b4ee01e45aee5 (patch)
tree169b96bc9c235b8dd56da5d4d08a57d9b4abe204 /pkgs/development/python-modules/robotsuite
parent7357b369d51dee7e9eadf60d0da88ffb6f1ed6a4 (diff)
downloadnixlib-489cdc23fca3562d757295bf9a9b4ee01e45aee5.tar
nixlib-489cdc23fca3562d757295bf9a9b4ee01e45aee5.tar.gz
nixlib-489cdc23fca3562d757295bf9a9b4ee01e45aee5.tar.bz2
nixlib-489cdc23fca3562d757295bf9a9b4ee01e45aee5.tar.lz
nixlib-489cdc23fca3562d757295bf9a9b4ee01e45aee5.tar.xz
nixlib-489cdc23fca3562d757295bf9a9b4ee01e45aee5.tar.zst
nixlib-489cdc23fca3562d757295bf9a9b4ee01e45aee5.zip
pythonPackages.robotsuite: move to python-modules/
Easier maintenance when expressions are in separate files.
Diffstat (limited to 'pkgs/development/python-modules/robotsuite')
-rw-r--r--pkgs/development/python-modules/robotsuite/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/robotsuite/default.nix b/pkgs/development/python-modules/robotsuite/default.nix
new file mode 100644
index 000000000000..2dd672c01097
--- /dev/null
+++ b/pkgs/development/python-modules/robotsuite/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, buildPythonPackage, fetchPypi, unittest2, robotframework, lxml }:
+
+buildPythonPackage rec {
+  pname = "robotsuite";
+  version = "2.0.0";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "15iw7g6gspf1ill0mzjrj71dirqfc86f1j14wphdvs2lazv8d50z";
+  };
+
+  buildInputs = [ unittest2 ];
+  propagatedBuildInputs = [ robotframework lxml ];
+
+  meta = with stdenv.lib; {
+    description = "Python unittest test suite for Robot Framework";
+    homepage = http://github.com/collective/robotsuite/;
+    license = licenses.gpl3;
+  };
+}