60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
258 lines
6.2 KiB
Nix
258 lines
6.2 KiB
Nix
{ lib, buildPythonPackage, fetchPypi, callPackage, mock, cairosvg, klein, jinja2, buildbot-pkg }:
|
|
{
|
|
# this is exposed for potential plugins to use and for nix-update
|
|
inherit buildbot-pkg;
|
|
www = buildPythonPackage rec {
|
|
pname = "buildbot-www";
|
|
inherit (buildbot-pkg) version;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-bu22WXJ2yBGe89GL3RBxkUN/yPu2GEYURk6C+2LIpns=";
|
|
};
|
|
|
|
# Remove unnecessary circular dependency on buildbot
|
|
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";
|
|
maintainers = teams.buildbot.members;
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
www-react = buildPythonPackage rec {
|
|
pname = "buildbot-www-react";
|
|
inherit (buildbot-pkg) version;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-WDtw4wSAPsmIRcoZS1PIRzQR4OJnHVyc19Q7MnU5VSs=";
|
|
};
|
|
|
|
# Remove unnecessary circular dependency on buildbot
|
|
postPatch = ''
|
|
sed -i "s/'buildbot'//" setup.py
|
|
'';
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://buildbot.net/";
|
|
description = "Buildbot UI (React)";
|
|
maintainers = teams.buildbot.members;
|
|
license = licenses.gpl2Only;
|
|
};
|
|
};
|
|
|
|
console-view = buildPythonPackage rec {
|
|
pname = "buildbot-console-view";
|
|
inherit (buildbot-pkg) version;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-HGlKu9ptej35GJYBBWted/YtsH/uigckAoFAjYTh3gY=";
|
|
};
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://buildbot.net/";
|
|
description = "Buildbot Console View Plugin";
|
|
maintainers = teams.buildbot.members;
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
react-console-view = buildPythonPackage rec {
|
|
pname = "buildbot-react-console-view";
|
|
inherit (buildbot-pkg) version;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-oFbR4NvI/6oPXY8TospkHS1j/5KzXd1fguazFtDPIko=";
|
|
};
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
# tests fail
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://buildbot.net/";
|
|
description = "Buildbot Console View Plugin (React)";
|
|
maintainers = teams.buildbot.members;
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
waterfall-view = buildPythonPackage rec {
|
|
pname = "buildbot-waterfall-view";
|
|
inherit (buildbot-pkg) version;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-O4scYAKpoEOXsPIodkKUrfwCGNYHlOGfvDnguaM12U0=";
|
|
};
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://buildbot.net/";
|
|
description = "Buildbot Waterfall View Plugin";
|
|
maintainers = teams.buildbot.members;
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
react-waterfall-view = buildPythonPackage rec {
|
|
pname = "buildbot-react-waterfall-view";
|
|
inherit (buildbot-pkg) version;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-DlYqK32lVdZ8qby/1+JCo6m81/0dsxqiAfWMIZ1OAPQ=";
|
|
};
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
# tests fail
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://buildbot.net/";
|
|
description = "Buildbot Waterfall View Plugin (React)";
|
|
maintainers = teams.buildbot.members;
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
grid-view = buildPythonPackage rec {
|
|
pname = "buildbot-grid-view";
|
|
inherit (buildbot-pkg) version;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-cK+uZU7rG423IT8xvwrpMPiUXfu1oPpGB5onmWNK4fs=";
|
|
};
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://buildbot.net/";
|
|
description = "Buildbot Grid View Plugin";
|
|
maintainers = teams.buildbot.members;
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
react-grid-view = buildPythonPackage rec {
|
|
pname = "buildbot-react-grid-view";
|
|
inherit (buildbot-pkg) version;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-Gbc0T1fsmke1pO/LiXCzQYrjWzYG1WhHZgypLyzhfok=";
|
|
};
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
# tests fail
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://buildbot.net/";
|
|
description = "Buildbot Grid View Plugin (React)";
|
|
maintainers = teams.buildbot.members;
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
wsgi-dashboards = buildPythonPackage rec {
|
|
pname = "buildbot-wsgi-dashboards";
|
|
inherit (buildbot-pkg) version;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-eFfOYhKw575VWlwD5dKRnqjSUV6kdPrv3UXBs/3AREo=";
|
|
};
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://buildbot.net/";
|
|
description = "Buildbot WSGI dashboards Plugin";
|
|
maintainers = teams.buildbot.members;
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
react-wsgi-dashboards = buildPythonPackage rec {
|
|
pname = "buildbot-react-wsgi-dashboards";
|
|
inherit (buildbot-pkg) version;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-0CCD1Zrj1xodUITvLzTDrLgLGaEVqt8y26f+exsP4N8=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
};
|
|
|
|
badges = buildPythonPackage rec {
|
|
pname = "buildbot-badges";
|
|
inherit (buildbot-pkg) version;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-FNMspluhQlGgQ4X7gJisakHTTmn/5PtQ+obK26PrXdg=";
|
|
};
|
|
|
|
buildInputs = [ buildbot-pkg ];
|
|
propagatedBuildInputs = [ cairosvg klein jinja2 ];
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://buildbot.net/";
|
|
description = "Buildbot Badges Plugin";
|
|
maintainers = teams.buildbot.members ++ [ maintainers.julienmalka ];
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
}
|