2017-03-08 16:55:16 +01:00
|
|
|
{ stdenv, pythonPackages }:
|
2016-08-10 01:08:01 +02:00
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication (rec {
|
2016-09-16 01:16:23 +02:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot-worker";
|
2017-07-05 18:00:22 +02:00
|
|
|
version = "0.9.9.post2";
|
2016-08-10 01:08:01 +02:00
|
|
|
|
2017-03-08 16:55:16 +01:00
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
2017-07-05 18:00:22 +02:00
|
|
|
sha256 = "1wb2fw0djamhn1sb7rwnf12i4ijdq9y4k33ri7dcwxxcavxsvqa0";
|
2016-08-10 01:08:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = with pythonPackages; [ setuptoolsTrial mock ];
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ twisted future ];
|
|
|
|
|
2017-01-30 18:44:14 +01:00
|
|
|
postPatch = ''
|
2017-03-08 16:55:16 +01:00
|
|
|
substituteInPlace buildbot_worker/scripts/logwatcher.py --replace '/usr/bin/tail' "$(type -P tail)"
|
2017-01-30 18:44:14 +01:00
|
|
|
'';
|
|
|
|
|
2016-08-10 01:08:01 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://buildbot.net/;
|
|
|
|
description = "Buildbot Worker Daemon";
|
|
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
2016-10-04 19:20:09 +02:00
|
|
|
license = licenses.gpl2;
|
2016-08-10 01:08:01 +02:00
|
|
|
};
|
|
|
|
})
|