109 lines
2.8 KiB
Nix
Raw Normal View History

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