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";
|
|
|
|
hash = "sha256-OzH7ckNL09s4r3f6PIc3q9lLT3NgCdIf0IMwJtwlKiY=";
|
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";
|
|
|
|
hash = "sha256-lfurzhNJ5DvuPCD/WJ3k+ajuZzhNF6zGOgSuuD0/+Ys=";
|
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";
|
|
|
|
hash = "sha256-uKNqnqUkNkd14/6QcquyWp1v59bNWcTB4s8lRO9hkUc=";
|
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";
|
|
|
|
hash = "sha256-wUrhPbd71F3OfXI5Re1xPnc1/vZxYXxdxX58fnWKjYE=";
|
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";
|
|
|
|
hash = "sha256-qc5mP7V2cOR3SOt224i8HVoAyWHvVYbsqfIQvPjesmE=";
|
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";
|
|
|
|
hash = "sha256-s6L4oF/wTOfM9uKFEJ/mjnQWE6oPRcd32lM1p2ox9+I=";
|
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";
|
|
|
|
hash = "sha256-tZRwDqWYjBwguqA6T3ZoY38+QFogXKiTzbg1qjs/spE=";
|
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";
|
|
|
|
hash = "sha256-t++yXEgM4l40grSVccjx399TM/vUTmQOSInfH+Wqi50=";
|
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";
|
|
|
|
hash = "sha256-MkrMcaf2UeUYjkwcdhj4rhBwEtVESJEMtGa7RArNLz0=";
|
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";
|
|
|
|
hash = "sha256-iCAtKOl/8sfCwa3tsK2oQ+ybs0TVF5uWg4Jv/r7oPWg=";
|
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";
|
|
|
|
hash = "sha256-28vj6wUZEnVUSUWrveJ5tdIjN+l4RDewPnm3IVQPXn4=";
|
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
|
|
|
}
|