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

29 lines
754 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, buildbot, setuptoolsTrial, mock, twisted,
future, coreutils }:
2017-12-16 20:06:43 -08:00
buildPythonPackage (rec {
pname = "buildbot-worker";
inherit (buildbot) version;
2017-12-16 20:06:43 -08:00
src = fetchPypi {
inherit pname version;
2020-12-08 19:16:52 -08:00
sha256 = "1salrdirny1jpm53shb9dhzs1w7rbp5q7z2qpzrg1nmsh2kcd6ap";
};
2017-12-16 20:06:43 -08:00
propagatedBuildInputs = [ twisted future ];
checkInputs = [ setuptoolsTrial mock ];
postPatch = ''
2019-06-22 17:39:14 -07:00
substituteInPlace buildbot_worker/scripts/logwatcher.py \
--replace /usr/bin/tail "${coreutils}/bin/tail"
'';
2017-12-16 20:06:43 -08:00
meta = with lib; {
2019-10-26 18:27:30 -07:00
homepage = "https://buildbot.net/";
description = "Buildbot Worker Daemon";
2019-08-18 10:20:18 -07:00
maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ];
license = licenses.gpl2;
};
})