50466c2d4f
- updates buildbot to version 9 release - adds nixos configuration module - fixes buildbot-www package deps - re-hardcode path to tail - builbot configuration via module vars fixes #19759
93 lines
1.9 KiB
Nix
93 lines
1.9 KiB
Nix
{ stdenv,
|
|
lib,
|
|
pythonPackages,
|
|
fetchurl,
|
|
coreutils,
|
|
openssh,
|
|
buildbot-worker,
|
|
plugins ? [],
|
|
enableLocalWorker ? false
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication (rec {
|
|
name = "${pname}-${version}";
|
|
pname = "buildbot";
|
|
version = "0.9.0.post1";
|
|
src = fetchurl {
|
|
url = "mirror://pypi/b/${pname}/${name}.tar.gz";
|
|
sha256 = "18rnsp691cnmbymlch6czx3mrcmifmf6dk97h9nslgfkkyf25n5g";
|
|
};
|
|
|
|
buildInputs = with pythonPackages; [
|
|
lz4
|
|
txrequests
|
|
pyjade
|
|
boto3
|
|
moto
|
|
txgithub
|
|
mock
|
|
setuptoolsTrial
|
|
isort
|
|
pylint
|
|
astroid
|
|
pyflakes
|
|
] ++ lib.optionals (enableLocalWorker) [openssh];
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
|
|
# core
|
|
twisted
|
|
jinja2
|
|
zope_interface
|
|
future
|
|
sqlalchemy
|
|
sqlalchemy_migrate
|
|
future
|
|
dateutil
|
|
txaio
|
|
autobahn
|
|
|
|
# tls
|
|
pyopenssl
|
|
service-identity
|
|
idna
|
|
|
|
# docs
|
|
sphinx
|
|
sphinxcontrib-blockdiag
|
|
sphinxcontrib-spelling
|
|
pyenchant
|
|
docutils
|
|
ramlfications
|
|
sphinx-jinja
|
|
|
|
] ++ plugins ++
|
|
lib.optionals (enableLocalWorker) [buildbot-worker];
|
|
|
|
preInstall = ''
|
|
# writes out a file that can't be read properly
|
|
sed -i.bak -e '69,84d' buildbot/test/unit/test_www_config.py
|
|
'';
|
|
|
|
postPatch = ''
|
|
# re-hardcode path to tail
|
|
sed -i 's|/usr/bin/tail|${coreutils}/bin/tail|' buildbot/scripts/logwatcher.py
|
|
'';
|
|
|
|
postFixup = ''
|
|
mv -v $out/bin/buildbot $out/bin/.wrapped-buildbot
|
|
echo "#!/bin/sh" > $out/bin/buildbot
|
|
echo "export PYTHONPATH=$PYTHONPATH" >> $out/bin/buildbot
|
|
echo "exec $out/bin/.wrapped-buildbot \"\$@\"" >> $out/bin/buildbot
|
|
chmod -c 555 $out/bin/buildbot
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://buildbot.net/;
|
|
description = "Continuous integration system that automates the build/test cycle";
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
|
platforms = platforms.all;
|
|
license = licenses.gpl2;
|
|
};
|
|
})
|