2018-01-26 23:54:43 +00:00
|
|
|
{ stdenv, pythonPackages, buildbot-pkg }:
|
2016-08-10 00:08:01 +01:00
|
|
|
|
2018-01-26 23:54:43 +00:00
|
|
|
{
|
2016-08-10 00:08:01 +01:00
|
|
|
www = pythonPackages.buildPythonPackage rec {
|
2016-09-16 00:16:23 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot_www";
|
2017-09-11 14:15:04 +01:00
|
|
|
version = buildbot-pkg.version;
|
2016-08-10 00:08:01 +01:00
|
|
|
|
|
|
|
# NOTE: wheel is used due to buildbot circular dependency
|
|
|
|
format = "wheel";
|
2016-10-04 18:20:09 +01:00
|
|
|
|
2017-01-30 17:44:14 +00:00
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version format;
|
2018-07-03 08:16:00 +01:00
|
|
|
sha256 = "001kxjcyn5sxiq7m1izy4djj7alw6qpgaid4f518s9xgm4a8hwcb";
|
2016-08-10 00:08:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://buildbot.net/;
|
|
|
|
description = "Buildbot UI";
|
|
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
2016-10-04 18:20:09 +01:00
|
|
|
license = licenses.gpl2;
|
2016-08-10 00:08:01 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
console-view = pythonPackages.buildPythonPackage rec {
|
2016-09-16 00:16:23 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot-console-view";
|
2017-09-11 14:15:04 +01:00
|
|
|
version = buildbot-pkg.version;
|
2016-08-10 00:08:01 +01:00
|
|
|
|
2017-03-07 19:26:21 +00:00
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-03 08:16:00 +01:00
|
|
|
sha256 = "11p9l9r9rh8cq0ihzjcdxfbi55n7inbsz45zqq67rkvqn5nhj5b6";
|
2016-08-10 00:08:01 +01:00
|
|
|
};
|
|
|
|
|
2017-01-30 17:44:14 +00:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
|
2016-08-10 00:08:01 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://buildbot.net/;
|
|
|
|
description = "Buildbot Console View Plugin";
|
|
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
2016-10-04 18:20:09 +01:00
|
|
|
license = licenses.gpl2;
|
2016-08-10 00:08:01 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
waterfall-view = pythonPackages.buildPythonPackage rec {
|
2016-09-16 00:16:23 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot-waterfall-view";
|
2017-09-11 14:15:04 +01:00
|
|
|
version = buildbot-pkg.version;
|
2016-08-10 00:08:01 +01:00
|
|
|
|
2017-03-07 19:26:21 +00:00
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-03 08:16:00 +01:00
|
|
|
sha256 = "1yx63frfpbvwy4hfib1psyq5ad0wysyzfrla8d7lgbdaip021wzw";
|
2016-08-10 00:08:01 +01:00
|
|
|
};
|
|
|
|
|
2017-01-30 17:44:14 +00:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
|
2016-08-10 00:08:01 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://buildbot.net/;
|
|
|
|
description = "Buildbot Waterfall View Plugin";
|
|
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
2016-10-04 18:20:09 +01:00
|
|
|
license = licenses.gpl2;
|
2016-08-10 00:08:01 +01:00
|
|
|
};
|
|
|
|
};
|
2017-07-05 17:00:22 +01:00
|
|
|
|
|
|
|
grid-view = pythonPackages.buildPythonPackage rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot-grid-view";
|
2017-09-11 14:15:04 +01:00
|
|
|
version = buildbot-pkg.version;
|
2017-07-05 17:00:22 +01:00
|
|
|
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-03 08:16:00 +01:00
|
|
|
sha256 = "06my75hli3w1skdkx1qz6zqw2wckanhrcvlqm4inylj9v9pcrgv6";
|
2017-07-05 17:00:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://buildbot.net/;
|
|
|
|
description = "Buildbot Grid View Plugin";
|
|
|
|
maintainers = with maintainers; [ nand0p ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-09-11 14:15:04 +01:00
|
|
|
wsgi-dashboards = pythonPackages.buildPythonPackage rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot-wsgi-dashboards";
|
|
|
|
version = buildbot-pkg.version;
|
|
|
|
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-03 08:16:00 +01:00
|
|
|
sha256 = "073gz44fa5k1p8k46k0ld9gg16j8zdj6sc297qfyqpiw28ybhc5s";
|
2017-09-11 14:15:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://buildbot.net/;
|
|
|
|
description = "Buildbot WSGI dashboards Plugin";
|
2018-04-25 05:11:43 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-09-11 14:15:04 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-08-10 00:08:01 +01:00
|
|
|
}
|