linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / robomachine / default.nix
blob4f5d44006c440b1350a81803511a25ed3d009346
1 { lib, fetchPypi, buildPythonPackage, pyparsing, robotframework, allpairspy }:
3 buildPythonPackage rec {
4   pname = "RoboMachine";
5   version = "0.9.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "4251d405759a38f1e665acc245dcbcdec319376718169a73c57560183370fe0e";
10   };
12   propagatedBuildInputs = [ pyparsing robotframework allpairspy ];
14   # Remove Windows .bat files
15   postInstall = ''
16     rm "$out/bin/"*.bat
17   '';
19   postPatch = ''
20     substituteInPlace setup.py --replace "argparse" ""
21   '';
23   meta = with lib; {
24     description = "Test data generator for Robot Framework";
25     homepage = "https://github.com/mkorpela/RoboMachine";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ bjornfor ];
28   };