1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/buildbot/worker.nix

29 lines
744 B
Nix
Raw Normal View History

2019-06-23 01:39:14 +01:00
{ lib, buildPythonPackage, fetchPypi, setuptoolsTrial, mock, twisted, future,
coreutils }:
2017-12-17 04:06:43 +00:00
buildPythonPackage (rec {
pname = "buildbot-worker";
version = "2.5.0";
2017-12-17 04:06:43 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "8330cf314064516648e78d2685b2eaae14fc9481351eb229f1392b38bdc18815";
};
2017-12-17 04:06:43 +00:00
propagatedBuildInputs = [ twisted future ];
checkInputs = [ setuptoolsTrial mock ];
postPatch = ''
2019-06-23 01:39:14 +01:00
substituteInPlace buildbot_worker/scripts/logwatcher.py \
--replace /usr/bin/tail "${coreutils}/bin/tail"
'';
2017-12-17 04:06:43 +00:00
meta = with lib; {
homepage = http://buildbot.net/;
description = "Buildbot Worker Daemon";
2019-08-18 18:20:18 +01:00
maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ];
license = licenses.gpl2;
};
})