2016-10-04 10:20:09 -07:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
2016-08-09 16:08:01 -07:00
|
|
|
|
|
|
|
let
|
|
|
|
buildbot-pkg = pythonPackages.buildPythonPackage rec {
|
2016-09-15 16:16:23 -07:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot-pkg";
|
2017-02-27 11:02:11 -08:00
|
|
|
version = "0.9.4";
|
2016-08-09 16:08:01 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-15 16:16:23 -07:00
|
|
|
url = "mirror://pypi/b/${pname}/${name}.tar.gz";
|
2017-02-27 11:02:11 -08:00
|
|
|
sha256 = "09a3yvs5hhf8syrkyydznmymgg86dpvgrwy9rb3bryq00wpjb3wn";
|
2016-08-09 16:08:01 -07: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 10:20:09 -07:00
|
|
|
license = licenses.gpl2;
|
2016-08-09 16:08:01 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
in {
|
|
|
|
www = pythonPackages.buildPythonPackage rec {
|
2016-09-15 16:16:23 -07:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot_www";
|
2017-02-27 11:02:11 -08:00
|
|
|
version = "0.9.4";
|
2016-08-09 16:08:01 -07:00
|
|
|
|
|
|
|
# NOTE: wheel is used due to buildbot circular dependency
|
|
|
|
format = "wheel";
|
2016-10-04 10:20:09 -07:00
|
|
|
|
2017-01-30 09:44:14 -08:00
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version format;
|
|
|
|
python = "py2";
|
2017-02-27 11:02:11 -08:00
|
|
|
sha256 = "08m4h2pf6hgi8igh2j0qzfq49izc2z0qqj6ddxk0di5l306jx4im";
|
2016-08-09 16:08:01 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://buildbot.net/;
|
|
|
|
description = "Buildbot UI";
|
|
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
2016-10-04 10:20:09 -07:00
|
|
|
license = licenses.gpl2;
|
2016-08-09 16:08:01 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
console-view = pythonPackages.buildPythonPackage rec {
|
2016-09-15 16:16:23 -07:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot-console-view";
|
2017-02-27 11:02:11 -08:00
|
|
|
version = "0.9.4";
|
2016-08-09 16:08:01 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-15 16:16:23 -07:00
|
|
|
url = "mirror://pypi/b/${pname}/${name}.tar.gz";
|
2017-02-27 11:02:11 -08:00
|
|
|
sha256 = "1w2vv8iyzl7ak4161avp9n6mhh08adav2fl82bbm17a3064apl8n";
|
2016-08-09 16:08:01 -07:00
|
|
|
};
|
|
|
|
|
2017-01-30 09:44:14 -08:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
|
2016-08-09 16:08:01 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://buildbot.net/;
|
|
|
|
description = "Buildbot Console View Plugin";
|
|
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
2016-10-04 10:20:09 -07:00
|
|
|
license = licenses.gpl2;
|
2016-08-09 16:08:01 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
waterfall-view = pythonPackages.buildPythonPackage rec {
|
2016-09-15 16:16:23 -07:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "buildbot-waterfall-view";
|
2017-02-27 11:02:11 -08:00
|
|
|
version = "0.9.4";
|
2016-08-09 16:08:01 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-15 16:16:23 -07:00
|
|
|
url = "mirror://pypi/b/${pname}/${name}.tar.gz";
|
2017-02-27 11:02:11 -08:00
|
|
|
sha256 = "17xn6vrr0k2xabw6hr9sdyy0ry3llyjfmc79qrpgp5bsly2qv3jf";
|
2016-08-09 16:08:01 -07:00
|
|
|
};
|
|
|
|
|
2017-01-30 09:44:14 -08:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
|
2016-08-09 16:08:01 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://buildbot.net/;
|
|
|
|
description = "Buildbot Waterfall View Plugin";
|
|
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
2016-10-04 10:20:09 -07:00
|
|
|
license = licenses.gpl2;
|
2016-08-09 16:08:01 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|