nixpkgs/pkgs/development/tools/build-managers/buildbot/worker.nix

26 lines
726 B
Nix
Raw Normal View History

{ stdenv, pythonPackages }:
pythonPackages.buildPythonApplication (rec {
pname = "buildbot-worker";
version = "1.4.0";
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "12zvf4c39b6s4g1f2w407q8kkw602m88rc1ggi4w9pkw3bwbxrgy";
};
buildInputs = with pythonPackages; [ setuptoolsTrial mock ];
propagatedBuildInputs = with pythonPackages; [ twisted future ];
postPatch = ''
substituteInPlace buildbot_worker/scripts/logwatcher.py --replace '/usr/bin/tail' "$(type -P tail)"
'';
meta = with stdenv.lib; {
homepage = http://buildbot.net/;
description = "Buildbot Worker Daemon";
maintainers = with maintainers; [ nand0p ryansydnor ];
license = licenses.gpl2;
};
})