1{ stdenv, lib, fetchPypi, buildPythonPackage, pyparsing, robotframework, allpairspy }:
2
3buildPythonPackage rec {
4 pname = "RoboMachine";
5 version = "0.9.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "4251d405759a38f1e665acc245dcbcdec319376718169a73c57560183370fe0e";
10 };
11
12 propagatedBuildInputs = [ pyparsing robotframework allpairspy ];
13
14 # Remove Windows .bat files
15 postInstall = ''
16 rm "$out/bin/"*.bat
17 '';
18
19 postPatch = ''
20 substituteInPlace setup.py --replace "argparse" ""
21 '';
22
23 meta = with lib; {
24 broken = true;
25 description = "Test data generator for Robot Framework";
26 homepage = "https://github.com/mkorpela/RoboMachine";
27 license = licenses.asl20;
28 maintainers = with maintainers; [ bjornfor ];
29 };
30}