2020-06-06 23:31:19 +01:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi, fetchpatch, makeWrapper, isPy3k,
|
2017-12-17 04:06:43 +00:00
|
|
|
python, twisted, jinja2, zope_interface, future, sqlalchemy,
|
2018-12-19 18:41:36 +00:00
|
|
|
sqlalchemy_migrate, dateutil, txaio, autobahn, pyjwt, pyyaml, treq,
|
2019-06-16 20:59:06 +01:00
|
|
|
txrequests, pyjade, boto3, moto, mock, python-lz4, setuptoolsTrial,
|
2019-10-27 01:27:30 +00:00
|
|
|
isort, pylint, flake8, buildbot-worker, buildbot-pkg, buildbot-plugins,
|
2020-02-29 23:24:02 +00:00
|
|
|
parameterized, git, openssh, glibcLocales, nixosTests }:
|
2016-08-10 00:08:01 +01:00
|
|
|
|
2017-03-08 15:55:16 +00:00
|
|
|
let
|
2017-12-17 04:06:43 +00:00
|
|
|
withPlugins = plugins: buildPythonPackage {
|
|
|
|
name = "${package.name}-with-plugins";
|
|
|
|
phases = [ "installPhase" "fixupPhase" ];
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
propagatedBuildInputs = plugins ++ package.propagatedBuildInputs;
|
2016-08-10 00:08:01 +01:00
|
|
|
|
2017-12-17 04:06:43 +00:00
|
|
|
installPhase = ''
|
|
|
|
makeWrapper ${package}/bin/buildbot $out/bin/buildbot \
|
|
|
|
--prefix PYTHONPATH : "${package}/${python.sitePackages}:$PYTHONPATH"
|
|
|
|
ln -sfv ${package}/lib $out/lib
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = package.passthru // {
|
|
|
|
withPlugins = morePlugins: withPlugins (morePlugins ++ plugins);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
package = buildPythonPackage rec {
|
2017-03-08 15:55:16 +00:00
|
|
|
pname = "buildbot";
|
2020-06-06 23:31:19 +01:00
|
|
|
version = "2.8.1";
|
2016-08-10 00:08:01 +01:00
|
|
|
|
2020-06-06 23:31:19 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1nrbn8a2c56l5j0axmn9ijaviw0a6nrd34sg81r5j05mzzpb69is";
|
2019-05-20 00:22:14 +01:00
|
|
|
};
|
2016-08-10 00:08:01 +01:00
|
|
|
|
2017-12-17 04:06:43 +00:00
|
|
|
propagatedBuildInputs = [
|
2017-03-08 15:55:16 +00:00
|
|
|
# core
|
|
|
|
twisted
|
|
|
|
jinja2
|
|
|
|
zope_interface
|
|
|
|
sqlalchemy
|
|
|
|
sqlalchemy_migrate
|
|
|
|
dateutil
|
|
|
|
txaio
|
|
|
|
autobahn
|
|
|
|
pyjwt
|
2018-12-19 18:41:36 +00:00
|
|
|
pyyaml
|
2019-11-09 23:52:53 +00:00
|
|
|
]
|
2017-03-08 15:55:16 +00:00
|
|
|
# tls
|
2019-11-09 23:52:53 +00:00
|
|
|
++ twisted.extras.tls;
|
2016-08-10 00:08:01 +01:00
|
|
|
|
2017-12-17 04:06:43 +00:00
|
|
|
checkInputs = [
|
|
|
|
treq
|
|
|
|
txrequests
|
|
|
|
pyjade
|
|
|
|
boto3
|
|
|
|
moto
|
|
|
|
mock
|
2018-12-06 04:20:12 +00:00
|
|
|
python-lz4
|
2017-12-17 04:06:43 +00:00
|
|
|
setuptoolsTrial
|
|
|
|
isort
|
|
|
|
pylint
|
|
|
|
flake8
|
|
|
|
buildbot-worker
|
|
|
|
buildbot-pkg
|
2019-10-27 01:27:30 +00:00
|
|
|
buildbot-plugins.www
|
2019-02-04 03:56:46 +00:00
|
|
|
parameterized
|
2019-08-18 18:09:09 +01:00
|
|
|
git
|
2019-10-27 01:27:30 +00:00
|
|
|
openssh
|
2017-12-17 04:06:43 +00:00
|
|
|
glibcLocales
|
2017-03-08 15:55:16 +00:00
|
|
|
];
|
|
|
|
|
2017-05-03 21:31:17 +01:00
|
|
|
patches = [
|
2017-05-12 14:44:30 +01:00
|
|
|
# This patch disables the test that tries to read /etc/os-release which
|
2017-05-03 21:31:17 +01:00
|
|
|
# is not accessible in sandboxed builds.
|
|
|
|
./skip_test_linux_distro.patch
|
|
|
|
];
|
|
|
|
|
2018-12-19 18:41:36 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace buildbot/scripts/logwatcher.py --replace '/usr/bin/tail' "$(type -P tail)"
|
|
|
|
'';
|
2017-12-17 04:06:43 +00:00
|
|
|
|
2018-05-01 22:47:53 +01:00
|
|
|
# TimeoutErrors on slow machines -> aarch64
|
|
|
|
doCheck = !stdenv.isAarch64;
|
|
|
|
|
2018-12-19 18:41:36 +00:00
|
|
|
preCheck = ''
|
|
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
export PATH="$out/bin:$PATH"
|
2017-03-08 15:55:16 +00:00
|
|
|
'';
|
|
|
|
|
2019-02-04 03:56:46 +00:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2017-12-17 04:06:43 +00:00
|
|
|
passthru = {
|
|
|
|
inherit withPlugins;
|
2020-02-29 23:24:02 +00:00
|
|
|
tests.buildbot = nixosTests.buildbot;
|
2017-12-17 04:06:43 +00:00
|
|
|
};
|
2016-09-16 21:27:45 +01:00
|
|
|
|
2017-12-17 04:06:43 +00:00
|
|
|
meta = with lib; {
|
2019-10-27 01:27:30 +00:00
|
|
|
homepage = "https://buildbot.net/";
|
2017-07-05 17:00:22 +01:00
|
|
|
description = "Buildbot is an open-source continuous integration framework for automating software build, test, and release processes";
|
2019-08-18 18:20:18 +01:00
|
|
|
maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ];
|
2017-03-08 15:55:16 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
2017-09-11 13:25:53 +01:00
|
|
|
};
|
2017-03-08 15:55:16 +00:00
|
|
|
in package
|