2017-03-07 19:26:21 +00:00
|
|
|
{ stdenv, pythonPackages }:
|
2016-08-10 00:08:01 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
buildbot-pkg = pythonPackages.buildPythonPackage rec {
|
2016-09-16 00:16:23 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot-pkg";
|
2017-12-17 03:57:13 +00:00
|
|
|
version = "0.9.15.post1";
|
2016-08-10 00:08:01 +01:00
|
|
|
|
2017-03-07 19:26:21 +00:00
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
2017-12-17 03:57:13 +00:00
|
|
|
sha256 = "0gsa5fi1gkwnz8dsrl2s5kzcfawnj3nl8g8h6z1winz627l9n8sh";
|
2016-08-10 00:08:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ setuptools ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://buildbot.net/;
|
|
|
|
description = "Buildbot Packaging Helper";
|
|
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
2016-10-04 18:20:09 +01:00
|
|
|
license = licenses.gpl2;
|
2016-08-10 00:08:01 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
in {
|
|
|
|
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;
|
2017-12-17 03:57:13 +00:00
|
|
|
sha256 = "19cnzp5prima3jrk525xspw7vqc5pjln2nihj4kc3w90dhzllj8x";
|
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;
|
2017-12-17 03:57:13 +00:00
|
|
|
sha256 = "1j6aw2j2sl7ix8rb67pbs6nfvv8v3smgkvqzsjsyh5sdfr2663cg";
|
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;
|
2017-12-17 03:57:13 +00:00
|
|
|
sha256 = "0k0wd4rq034bij2flfjv60h8czkfn836bnaa7hwsrl58gxds39m4";
|
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;
|
2017-12-17 03:57:13 +00:00
|
|
|
sha256 = "08ng56jmy50s3zyn6wxizji1zhgzhi65z7w3wljg02qrbd5688gj";
|
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;
|
2017-12-17 03:57:13 +00:00
|
|
|
sha256 = "15fm72yymv873n3vsw9kprypcf6jzln18v4lb062n8lqw9pykwb1";
|
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";
|
|
|
|
maintainers = with maintainers; [ akazakov ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-08-10 00:08:01 +01:00
|
|
|
}
|