summary refs log tree commit diff
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-11-25 22:14:12 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-11-25 22:40:35 +0100
commit3c748b6023ee6f6503508f9d4ad5f38574df00dd (patch)
tree8630bab8f66d9e46c259b4c9faf44efbab84a392
parent4b287deccd2c0891ab3b04feaa81e2133d2ee987 (diff)
downloadnixlib-3c748b6023ee6f6503508f9d4ad5f38574df00dd.tar
nixlib-3c748b6023ee6f6503508f9d4ad5f38574df00dd.tar.gz
nixlib-3c748b6023ee6f6503508f9d4ad5f38574df00dd.tar.bz2
nixlib-3c748b6023ee6f6503508f9d4ad5f38574df00dd.tar.lz
nixlib-3c748b6023ee6f6503508f9d4ad5f38574df00dd.tar.xz
nixlib-3c748b6023ee6f6503508f9d4ad5f38574df00dd.tar.zst
nixlib-3c748b6023ee6f6503508f9d4ad5f38574df00dd.zip
python-robomachine: new package
Test data generator for Robot Framework.

https://github.com/mkorpela/RoboMachine
-rw-r--r--pkgs/top-level/python-packages.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index e5d9ca58e14e..c310d2102158 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -8142,6 +8142,27 @@ let
     };
   };
 
+  robomachine = buildPythonPackage rec {
+    name = "robomachine-0.6";
+
+    src = pkgs.fetchurl {
+      url = "https://pypi.python.org/packages/source/R/RoboMachine/RoboMachine-0.6.tar.gz";
+      md5 = "4e95eaa43afda0f363c78a88e9da7159";
+    };
+
+    propagatedBuildInputs = with self; [ pyparsing argparse robotframework ];
+
+    # Remove Windows .bat files
+    postInstall = ''
+      rm "$out"/bin/*.bat
+    '';
+
+    meta = with stdenv.lib; {
+      description = "Test data generator for Robot Framework";
+      homepage = https://github.com/mkorpela/RoboMachine;
+      license = licenses.asl20;
+    };
+  };
 
   robotframework = buildPythonPackage rec {
     version = "2.8.5";