34b5c9a4de
- Fixes unneeded patching - Adds worker to build inputs now needed for tests - Replaces enableworker option with worker configuration module - Openssh required for tests - Fixes worker hardcoded paths - Tested on Nixos Unstable
91 lines
2.5 KiB
Nix
91 lines
2.5 KiB
Nix
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
let
|
|
buildbot-pkg = pythonPackages.buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "buildbot-pkg";
|
|
version = "0.9.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/b/${pname}/${name}.tar.gz";
|
|
sha256 = "02949cvmghyh313i1hmplwxp3nzq789kk85xjx2ir82cpr1d6h6j";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ setuptools ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://buildbot.net/;
|
|
description = "Buildbot Packaging Helper";
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
|
platforms = platforms.all;
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
in {
|
|
www = pythonPackages.buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "buildbot_www";
|
|
version = "0.9.3";
|
|
|
|
# NOTE: wheel is used due to buildbot circular dependency
|
|
format = "wheel";
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
inherit pname version format;
|
|
python = "py2";
|
|
sha256 = "0yggg6mcykcnv41srl2sp2zwx2r38vb6a8jgxh1a4825mspm2jf7";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://buildbot.net/;
|
|
description = "Buildbot UI";
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
|
platforms = platforms.all;
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
console-view = pythonPackages.buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "buildbot-console-view";
|
|
version = "0.9.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/b/${pname}/${name}.tar.gz";
|
|
sha256 = "1rkzakm05x72nvdivc5bc3gab3nyasdfvlwnwril90jj9q1b92dk";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://buildbot.net/;
|
|
description = "Buildbot Console View Plugin";
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
|
platforms = platforms.all;
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
|
|
waterfall-view = pythonPackages.buildPythonPackage rec {
|
|
name = "${pname}-${version}";
|
|
pname = "buildbot-waterfall-view";
|
|
version = "0.9.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/b/${pname}/${name}.tar.gz";
|
|
sha256 = "033x2cs0znhk1j0lw067nmjw2m7yy1fdq5qch0sx50jnpjiq6g6g";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://buildbot.net/;
|
|
description = "Buildbot Waterfall View Plugin";
|
|
maintainers = with maintainers; [ nand0p ryansydnor ];
|
|
platforms = platforms.all;
|
|
license = licenses.gpl2;
|
|
};
|
|
};
|
|
}
|