nixpkgs/pkgs/development/python-modules/robomachine/default.nix

30 lines
767 B
Nix
Raw Normal View History

2018-03-18 12:19:44 +00:00
{ stdenv, fetchPypi, buildPythonPackage, pyparsing, argparse, robotframework, allpairspy }:
buildPythonPackage rec {
2018-03-18 12:19:44 +00:00
pname = "RoboMachine";
2017-12-30 11:26:56 +00:00
version = "0.8.0";
2018-03-18 12:19:44 +00:00
src = fetchPypi {
inherit pname version;
2017-12-30 11:26:56 +00:00
sha256 = "242cfd9be0f7591138eaeba03c9c190f894ce045e1767ab7b90eca330259fc45";
};
2018-03-18 12:19:44 +00:00
propagatedBuildInputs = [ pyparsing argparse robotframework allpairspy ];
# Remove Windows .bat files
postInstall = ''
rm "$out/bin/"*.bat
'';
postPatch = ''
substituteInPlace setup.py --replace "argparse" ""
'';
meta = with stdenv.lib; {
description = "Test data generator for Robot Framework";
homepage = https://github.com/mkorpela/RoboMachine;
license = licenses.asl20;
maintainers = with maintainers; [ bjornfor ];
};
}