Files
nixpkgs/pkgs/development/python-modules/buildbot/worker.nix
T

27 lines
704 B
Nix
Raw Normal View History

2017-12-16 23:06:43 -05:00
{ lib, buildPythonPackage, fetchPypi, python, setuptoolsTrial, mock, twisted, future }:
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";
2018-10-03 23:16:00 -07:00
version = "1.4.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;
2018-10-03 23:16:00 -07:00
sha256 = "12zvf4c39b6s4g1f2w407q8kkw602m88rc1ggi4w9pkw3bwbxrgy";
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 = ''
2017-03-08 10:55:16 -05:00
substituteInPlace buildbot_worker/scripts/logwatcher.py --replace '/usr/bin/tail' "$(type -P tail)"
2017-01-30 12:44:14 -05:00
'';
2017-12-16 23:06:43 -05:00
meta = with lib; {
2016-08-09 19:08:01 -04:00
homepage = http://buildbot.net/;
description = "Buildbot Worker Daemon";
maintainers = with maintainers; [ nand0p ryansydnor ];
2016-10-04 13:20:09 -04:00
license = licenses.gpl2;
2016-08-09 19:08:01 -04:00
};
})