4ac06ea6a1
- adds distro dependency - buildbot nodaemon in service module - fakerepo for module tests - service module parameter fixup - tested on nixos - tested on darwin
85 lines
2.3 KiB
Nix
85 lines
2.3 KiB
Nix
{ stdenv, pythonPackages }:
|
|
|
|
let
|
|
buildbot-pkg = pythonPackages.buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "buildbot-pkg";
|
|
version = "0.9.5";
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1xpi4w0lc6z97pmmms85dvdspacbzlvs8zi3kv1r4rypk3znwmi1";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ setuptools ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://buildbot.net/;
|
|
description = "Buildbot Packaging Helper";
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
in {
|
|
www = pythonPackages.buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "buildbot_www";
|
|
version = "0.9.5";
|
|
|
|
# NOTE: wheel is used due to buildbot circular dependency
|
|
format = "wheel";
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
inherit pname version format;
|
|
sha256 = "1d7yjxka6slflm3wbdpq4sr1kagmgbqdv2zgx9bq77jvjh7ga0py";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://buildbot.net/;
|
|
description = "Buildbot UI";
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
console-view = pythonPackages.buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "buildbot-console-view";
|
|
version = "0.9.5";
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1s6mvw955dsgk7hvb1xa32bbd7w2yma62py5s0vmi5shv8nwq3hb";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://buildbot.net/;
|
|
description = "Buildbot Console View Plugin";
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
waterfall-view = pythonPackages.buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "buildbot-waterfall-view";
|
|
version = "0.9.5";
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "116846d987wp1bz78f0h4lypqcns5073vzhb4vsqbf08sppgr67k";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://buildbot.net/;
|
|
description = "Buildbot Waterfall View Plugin";
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
}
|