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

104 lines
2.7 KiB
Nix
Raw Normal View History

2017-12-17 04:06:43 +00:00
{ lib, buildPythonPackage, fetchPypi, buildbot, buildbot-pkg }:
{
2017-12-17 04:06:43 +00:00
www = buildPythonPackage rec {
pname = "buildbot_www";
2017-12-17 04:06:43 +00:00
inherit (buildbot-pkg) version;
# NOTE: wheel is used due to buildbot circular dependency
format = "wheel";
2017-12-17 04:06:43 +00:00
src = fetchPypi {
inherit pname version format;
2018-12-19 18:41:36 +00:00
sha256 = "03cgjhwpgbm0qgis1cdy9g4vc11hsrya9grcx4j35784rny7lbfl";
};
2017-12-17 04:06:43 +00:00
meta = with lib; {
homepage = http://buildbot.net/;
description = "Buildbot UI";
maintainers = with maintainers; [ nand0p ryansydnor ];
license = licenses.gpl2;
};
};
2017-12-17 04:06:43 +00:00
console-view = buildPythonPackage rec {
pname = "buildbot-console-view";
2017-12-17 04:06:43 +00:00
inherit (buildbot-pkg) version;
2017-12-17 04:06:43 +00:00
src = fetchPypi {
inherit pname version;
2018-12-19 18:41:36 +00:00
sha256 = "0pfp2n4ys99jglshdrp2f6jm73c4ym3dfwl6qjvbc7y7nsi74824";
};
2017-12-17 04:06:43 +00:00
propagatedBuildInputs = [ buildbot-pkg ];
checkInputs = [ buildbot ];
2017-12-17 04:06:43 +00:00
meta = with lib; {
homepage = http://buildbot.net/;
description = "Buildbot Console View Plugin";
maintainers = with maintainers; [ nand0p ryansydnor ];
license = licenses.gpl2;
};
};
2017-12-17 04:06:43 +00:00
waterfall-view = buildPythonPackage rec {
pname = "buildbot-waterfall-view";
2017-12-17 04:06:43 +00:00
inherit (buildbot-pkg) version;
2017-12-17 04:06:43 +00:00
src = fetchPypi {
inherit pname version;
2018-12-19 18:41:36 +00:00
sha256 = "0gnxq9niw64q36dm917lhhcl8zp0wjwaamjp07zidnrb5c3pjbsz";
};
2017-12-17 04:06:43 +00:00
propagatedBuildInputs = [ buildbot-pkg ];
checkInputs = [ buildbot ];
2017-12-17 04:06:43 +00:00
meta = with lib; {
homepage = http://buildbot.net/;
description = "Buildbot Waterfall View Plugin";
maintainers = with maintainers; [ nand0p ryansydnor ];
license = licenses.gpl2;
};
};
2017-12-17 04:06:43 +00:00
grid-view = buildPythonPackage rec {
pname = "buildbot-grid-view";
2017-12-17 04:06:43 +00:00
inherit (buildbot-pkg) version;
2017-12-17 04:06:43 +00:00
src = fetchPypi {
inherit pname version;
2018-12-19 18:41:36 +00:00
sha256 = "1b06aa8m1pzqq2d8imrq5mazc7llrlbgm7jzi8h6jjd2gahdjgz5";
};
2017-12-17 04:06:43 +00:00
propagatedBuildInputs = [ buildbot-pkg ];
checkInputs = [ buildbot ];
2017-12-17 04:06:43 +00:00
meta = with lib; {
homepage = http://buildbot.net/;
description = "Buildbot Grid View Plugin";
maintainers = with maintainers; [ nand0p ];
license = licenses.gpl2;
};
};
2017-12-17 04:06:43 +00:00
wsgi-dashboards = buildPythonPackage rec {
pname = "buildbot-wsgi-dashboards";
2017-12-17 04:06:43 +00:00
inherit (buildbot-pkg) version;
2017-12-17 04:06:43 +00:00
src = fetchPypi {
inherit pname version;
2018-12-19 18:41:36 +00:00
sha256 = "1v8411bw0cs206vwfnqx1na7dzg77h9aff4wlm11hkbdsy9ayv2d";
};
2017-12-17 04:06:43 +00:00
propagatedBuildInputs = [ buildbot-pkg ];
checkInputs = [ buildbot ];
2017-12-17 04:06:43 +00:00
meta = with lib; {
homepage = http://buildbot.net/;
description = "Buildbot WSGI dashboards Plugin";
maintainers = with maintainers; [ ];
license = licenses.gpl2;
};
};
}