2019-06-22 20:39:14 -04:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, setuptoolsTrial, mock, twisted, future,
|
|
|
|
coreutils }:
|
2016-08-09 19:08:01 -04:00
|
|
|
|
2017-12-16 23:06:43 -05:00
|
|
|
buildPythonPackage (rec {
|
2016-09-15 19:16:23 -04:00
|
|
|
pname = "buildbot-worker";
|
2019-10-24 08:47:26 +02:00
|
|
|
version = "2.5.0";
|
2016-08-09 19:08:01 -04:00
|
|
|
|
2017-12-16 23:06:43 -05:00
|
|
|
src = fetchPypi {
|
2017-03-08 10:55:16 -05:00
|
|
|
inherit pname version;
|
2019-10-26 21:27:30 -04:00
|
|
|
sha256 = "05c8q6ykharry4lv47imh6agq55fxar8a9ldwx46clb480qwyc43";
|
2016-08-09 19:08:01 -04:00
|
|
|
};
|
|
|
|
|
2017-12-16 23:06:43 -05:00
|
|
|
propagatedBuildInputs = [ twisted future ];
|
|
|
|
|
|
|
|
checkInputs = [ setuptoolsTrial mock ];
|
2016-08-09 19:08:01 -04:00
|
|
|
|
2017-01-30 12:44:14 -05:00
|
|
|
postPatch = ''
|
2019-06-22 20:39:14 -04:00
|
|
|
substituteInPlace buildbot_worker/scripts/logwatcher.py \
|
|
|
|
--replace /usr/bin/tail "${coreutils}/bin/tail"
|
2017-01-30 12:44:14 -05:00
|
|
|
'';
|
|
|
|
|
2017-12-16 23:06:43 -05:00
|
|
|
meta = with lib; {
|
2019-10-26 21:27:30 -04:00
|
|
|
homepage = "https://buildbot.net/";
|
2016-08-09 19:08:01 -04:00
|
|
|
description = "Buildbot Worker Daemon";
|
2019-08-18 13:20:18 -04:00
|
|
|
maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ];
|
2016-10-04 13:20:09 -04:00
|
|
|
license = licenses.gpl2;
|
2016-08-09 19:08:01 -04:00
|
|
|
};
|
|
|
|
})
|