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-05-12 14:44:30 +01:00
|
|
|
version = "0.9.7";
|
2016-08-10 00:08:01 +01:00
|
|
|
|
2017-03-07 19:26:21 +00:00
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
2017-05-12 14:44:30 +01:00
|
|
|
sha256 = "0p351r10y42gwgxb2qg7xlsbhmnzdmqp6h4922l0yfii3pzmrdzv";
|
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-05-12 14:44:30 +01:00
|
|
|
version = "0.9.7";
|
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-05-12 14:44:30 +01:00
|
|
|
sha256 = "1wf2spnilm0dkyw95vf57lca453sbly4r6ak3lxa8bpwhxb6lkdn";
|
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-05-12 14:44:30 +01:00
|
|
|
version = "0.9.7";
|
2016-08-10 00:08:01 +01:00
|
|
|
|
2017-03-07 19:26:21 +00:00
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
2017-05-12 14:44:30 +01:00
|
|
|
sha256 = "1iv77886rbbn0wlzl5qiqc08rgbymxirqh3vmimqwsabbh7fhzkm";
|
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-05-12 14:44:30 +01:00
|
|
|
version = "0.9.7";
|
2016-08-10 00:08:01 +01:00
|
|
|
|
2017-03-07 19:26:21 +00:00
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
2017-05-12 14:44:30 +01:00
|
|
|
sha256 = "1q42l25cryx0yp6lbbl0mxnxkb9h24wawhzhi1wkc3kj8zs5sifn";
|
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
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|