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

103 lines
2.5 KiB
Nix
Raw Normal View History

2019-05-20 01:22:14 +02:00
{ stdenv, lib, buildPythonPackage, fetchPypi, makeWrapper, isPy3k,
2017-12-17 05:06:43 +01:00
python, twisted, jinja2, zope_interface, future, sqlalchemy,
2018-12-19 19:41:36 +01:00
sqlalchemy_migrate, dateutil, txaio, autobahn, pyjwt, pyyaml, treq,
txrequests, pyjade, boto3, moto, mock, python-lz4, setuptoolsTrial,
2019-02-04 04:56:46 +01:00
isort, pylint, flake8, buildbot-worker, buildbot-pkg, parameterized,
glibcLocales }:
let
2017-12-17 05:06:43 +01:00
withPlugins = plugins: buildPythonPackage {
name = "${package.name}-with-plugins";
phases = [ "installPhase" "fixupPhase" ];
buildInputs = [ makeWrapper ];
propagatedBuildInputs = plugins ++ package.propagatedBuildInputs;
2017-12-17 05:06:43 +01: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";
2019-06-23 02:39:14 +02:00
version = "2.3.1";
2019-05-20 01:22:14 +02:00
src = fetchPypi {
inherit pname version;
2019-06-23 02:39:14 +02:00
sha256 = "0qzr6my8zvaj0a1jwyaf254rdgm1xcyq8zp4b6fa5aqigfld4dfg";
2019-05-20 01:22:14 +02:00
};
2017-12-17 05:06:43 +01:00
propagatedBuildInputs = [
# core
twisted
jinja2
zope_interface
2017-12-17 05:06:43 +01:00
future
sqlalchemy
sqlalchemy_migrate
dateutil
txaio
autobahn
pyjwt
2018-12-19 19:41:36 +01:00
pyyaml
# tls
2017-12-17 05:06:43 +01:00
twisted.extras.tls
];
2017-12-17 05:06:43 +01:00
checkInputs = [
treq
txrequests
pyjade
boto3
moto
mock
python-lz4
2017-12-17 05:06:43 +01:00
setuptoolsTrial
isort
pylint
flake8
buildbot-worker
buildbot-pkg
2019-02-04 04:56:46 +01:00
parameterized
2017-12-17 05:06:43 +01:00
glibcLocales
];
2017-05-03 22:31:17 +02:00
patches = [
2017-05-12 15:44:30 +02: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 19:41:36 +01:00
postPatch = ''
substituteInPlace buildbot/scripts/logwatcher.py --replace '/usr/bin/tail' "$(type -P tail)"
'';
2017-12-17 05:06:43 +01:00
# TimeoutErrors on slow machines -> aarch64
doCheck = !stdenv.isAarch64;
2018-12-19 19:41:36 +01:00
preCheck = ''
export LC_ALL="en_US.UTF-8"
export PATH="$out/bin:$PATH"
'';
2019-02-04 04:56:46 +01:00
disabled = !isPy3k;
2017-12-17 05:06:43 +01:00
passthru = {
inherit withPlugins;
};
2017-12-17 05:06:43 +01:00
meta = with lib; {
homepage = http://buildbot.net/;
description = "Buildbot is an open-source continuous integration framework for automating software build, test, and release processes";
maintainers = with maintainers; [ nand0p ryansydnor ];
license = licenses.gpl2;
};
2017-09-11 14:25:53 +02:00
};
in package