Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, lib, fetchPypi, buildPythonPackage, pyparsing, robotframework, allpairspy }: 2 3buildPythonPackage rec { 4 pname = "RoboMachine"; 5 version = "0.10.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 hash = "sha256-XrxHaV9U7mZ2TvySHGm6qw1AsoukppzwPq4wufIjL+k="; 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}