2024-07-01 15:47:52 +00:00
|
|
|
{ lib, buildPythonPackage, fetchurl, callPackage, mock, cairosvg, klein, jinja2, buildbot-pkg }:
|
2020-04-24 23:36:52 +00:00
|
|
|
{
|
2023-05-24 13:37:59 +00:00
|
|
|
# this is exposed for potential plugins to use and for nix-update
|
|
|
|
inherit buildbot-pkg;
|
2020-04-24 23:36:52 +00:00
|
|
|
www = buildPythonPackage rec {
|
2024-06-05 15:53:02 +00:00
|
|
|
pname = "buildbot_www";
|
2020-04-24 23:36:52 +00:00
|
|
|
inherit (buildbot-pkg) version;
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-wBwJXDR52jDRd+8efIjQ+ncWe708k1F21MuvBwhjEwc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
# Remove unnecessary circular dependency on buildbot
|
2020-04-24 23:36:52 +00:00
|
|
|
postPatch = ''
|
|
|
|
sed -i "s/'buildbot'//" setup.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ buildbot-pkg mock ];
|
|
|
|
|
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://buildbot.net/";
|
|
|
|
description = "Buildbot UI";
|
2024-01-13 08:15:51 +00:00
|
|
|
maintainers = teams.buildbot.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
www-react = buildPythonPackage rec {
|
2024-06-05 15:53:02 +00:00
|
|
|
pname = "buildbot_www_react";
|
2023-10-09 19:29:22 +00:00
|
|
|
inherit (buildbot-pkg) version;
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-JJK1vmTdOImKIM1glrTjo2E0KnotU2QJVc2OIzVQQ1Y=";
|
2023-10-09 19:29:22 +00:00
|
|
|
};
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
# Remove unnecessary circular dependency on buildbot
|
2023-10-09 19:29:22 +00:00
|
|
|
postPatch = ''
|
2024-01-02 11:29:13 +00:00
|
|
|
sed -i "s/'buildbot'//" setup.py
|
2023-10-09 19:29:22 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
|
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://buildbot.net/";
|
|
|
|
description = "Buildbot UI (React)";
|
2024-01-13 08:15:51 +00:00
|
|
|
maintainers = teams.buildbot.members;
|
2023-10-09 19:29:22 +00:00
|
|
|
license = licenses.gpl2Only;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
console-view = buildPythonPackage rec {
|
2024-06-05 15:53:02 +00:00
|
|
|
pname = "buildbot_console_view";
|
2020-04-24 23:36:52 +00:00
|
|
|
inherit (buildbot-pkg) version;
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-kzj4IPNn/cUW7nidOLyO7AD98uXxWcqvMxaOhXhFn74=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
|
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://buildbot.net/";
|
|
|
|
description = "Buildbot Console View Plugin";
|
2024-01-13 08:15:51 +00:00
|
|
|
maintainers = teams.buildbot.members;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
react-console-view = buildPythonPackage rec {
|
2024-06-05 15:53:02 +00:00
|
|
|
pname = "buildbot_react_console_view";
|
2024-01-13 08:15:51 +00:00
|
|
|
inherit (buildbot-pkg) version;
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-4quLblPknI/vrCNF7Frl5+UlY50vuspW0XmMJubvVXI=";
|
2024-01-13 08:15:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
|
|
|
|
# tests fail
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://buildbot.net/";
|
|
|
|
description = "Buildbot Console View Plugin (React)";
|
|
|
|
maintainers = teams.buildbot.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
waterfall-view = buildPythonPackage rec {
|
2024-06-05 15:53:02 +00:00
|
|
|
pname = "buildbot_waterfall_view";
|
2020-04-24 23:36:52 +00:00
|
|
|
inherit (buildbot-pkg) version;
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-VC84rftiA7/x0X3lJfHTrEZve/ZDncVDuq6fisEI8nc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
|
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://buildbot.net/";
|
|
|
|
description = "Buildbot Waterfall View Plugin";
|
2024-01-13 08:15:51 +00:00
|
|
|
maintainers = teams.buildbot.members;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
react-waterfall-view = buildPythonPackage rec {
|
2024-06-05 15:53:02 +00:00
|
|
|
pname = "buildbot_react_waterfall_view";
|
2024-01-13 08:15:51 +00:00
|
|
|
inherit (buildbot-pkg) version;
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-2HZBnVvxPhU6rLmG6l9hX51zm8pvA5amsjExGx65+OQ=";
|
2024-01-13 08:15:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
|
|
|
|
# tests fail
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://buildbot.net/";
|
|
|
|
description = "Buildbot Waterfall View Plugin (React)";
|
|
|
|
maintainers = teams.buildbot.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
grid-view = buildPythonPackage rec {
|
2024-06-05 15:53:02 +00:00
|
|
|
pname = "buildbot_grid_view";
|
2020-04-24 23:36:52 +00:00
|
|
|
inherit (buildbot-pkg) version;
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-IwTANqPNGon4lvT2ASpguEf8GcD1hz/7flNBml0NTdc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
|
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://buildbot.net/";
|
|
|
|
description = "Buildbot Grid View Plugin";
|
2024-01-13 08:15:51 +00:00
|
|
|
maintainers = teams.buildbot.members;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
react-grid-view = buildPythonPackage rec {
|
2024-06-05 15:53:02 +00:00
|
|
|
pname = "buildbot_react_grid_view";
|
2024-01-13 08:15:51 +00:00
|
|
|
inherit (buildbot-pkg) version;
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-SQiaIcupEtNePr4LUzwYm3RRKT9xa7RnHUaiE8EaRzQ=";
|
2024-01-13 08:15:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
|
|
|
|
# tests fail
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://buildbot.net/";
|
|
|
|
description = "Buildbot Grid View Plugin (React)";
|
|
|
|
maintainers = teams.buildbot.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
wsgi-dashboards = buildPythonPackage rec {
|
2024-06-05 15:53:02 +00:00
|
|
|
pname = "buildbot_wsgi_dashboards";
|
2020-04-24 23:36:52 +00:00
|
|
|
inherit (buildbot-pkg) version;
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-dzK4WvBRxWoAfhsdKoYUnsG97OKmM8Jgr4Uv7NPpiVk=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
|
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://buildbot.net/";
|
|
|
|
description = "Buildbot WSGI dashboards Plugin";
|
2024-01-13 08:15:51 +00:00
|
|
|
maintainers = teams.buildbot.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
2023-02-16 17:41:37 +00:00
|
|
|
|
2024-02-07 01:22:34 +00:00
|
|
|
react-wsgi-dashboards = buildPythonPackage rec {
|
2024-06-05 15:53:02 +00:00
|
|
|
pname = "buildbot_react_wsgi_dashboards";
|
2024-02-07 01:22:34 +00:00
|
|
|
inherit (buildbot-pkg) version;
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-vytU7WRdXWHazc/LYZSWlslkOb3lnTitEW3UZQ/VmTU=";
|
2024-02-07 01:22:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
|
|
|
|
# tests fail
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://buildbot.net/";
|
|
|
|
description = "Buildbot WSGI dashboards Plugin (React)";
|
|
|
|
maintainers = teams.buildbot.members;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-02-16 17:41:37 +00:00
|
|
|
badges = buildPythonPackage rec {
|
2024-06-05 15:53:02 +00:00
|
|
|
pname = "buildbot_badges";
|
2023-02-16 17:41:37 +00:00
|
|
|
inherit (buildbot-pkg) version;
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/buildbot/buildbot/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-O71qB9uIigYcK/t2t+481oktHjF5up1nk1dS4eEMb3A=";
|
2023-02-16 17:41:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
propagatedBuildInputs = [ cairosvg klein jinja2 ];
|
|
|
|
|
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://buildbot.net/";
|
|
|
|
description = "Buildbot Badges Plugin";
|
2024-01-13 08:15:51 +00:00
|
|
|
maintainers = teams.buildbot.members ++ [ maintainers.julienmalka ];
|
2023-02-16 17:41:37 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|