{ lib, buildPythonPackage, fetchPypi, fetchurl, callPackage, mock, cairosvg, klein, jinja2, buildbot-pkg, unzip, zip }: { # this is exposed for potential plugins to use and for nix-update inherit buildbot-pkg; www = buildPythonPackage rec { pname = "buildbot-www"; inherit (buildbot-pkg) version; src = fetchPypi { inherit pname version; hash = "sha256-ycjmkzKBYdCmJe5Ofjn4q1tg66oVXC2Oaq2qBaZbmwg="; }; # Remove unnecessary circular dependency on buildbot postPatch = '' sed -i "s/'buildbot'//" setup.py ''; buildInputs = [ buildbot-pkg mock ]; # No tests doCheck = false; meta = with lib; { homepage = "https://buildbot.net/"; description = "Buildbot UI"; maintainers = with maintainers; [ ryansydnor lopsided98 ]; license = licenses.gpl2; }; }; www-react = buildPythonPackage rec { pname = "buildbot-www-react"; inherit (buildbot-pkg) version; src = fetchPypi { inherit pname version; hash = "sha256-2fMqgM83ANHx7+MWUF0eALOaliwVkCSumnw+bLZR+tw="; }; # Remove unnecessary circular dependency on buildbot postPatch = '' sed -i "s/'buildbot'//" setup.py ''; buildInputs = [ buildbot-pkg ]; nativeBuildInputs = [ unzip zip ]; # No tests doCheck = false; meta = with lib; { homepage = "https://buildbot.net/"; description = "Buildbot UI (React)"; maintainers = with maintainers; [ mic92 ]; license = licenses.gpl2Only; }; }; console-view = buildPythonPackage rec { pname = "buildbot-console-view"; inherit (buildbot-pkg) version; src = fetchPypi { inherit pname version; hash = "sha256-0VW7tRT9yvVvh9x+2bG3b4q0yqgq9g2OyI0MELPxo4M="; }; buildInputs = [ buildbot-pkg ]; # No tests doCheck = false; meta = with lib; { homepage = "https://buildbot.net/"; description = "Buildbot Console View Plugin"; maintainers = with maintainers; [ ryansydnor lopsided98 ]; license = licenses.gpl2; }; }; waterfall-view = buildPythonPackage rec { pname = "buildbot-waterfall-view"; inherit (buildbot-pkg) version; src = fetchPypi { inherit pname version; hash = "sha256-92CNfBIGciv1mx948ha1YgvFGhx5hJsbn1n/BIXmPT8="; }; buildInputs = [ buildbot-pkg ]; # No tests doCheck = false; meta = with lib; { homepage = "https://buildbot.net/"; description = "Buildbot Waterfall View Plugin"; maintainers = with maintainers; [ ryansydnor lopsided98 ]; license = licenses.gpl2; }; }; grid-view = buildPythonPackage rec { pname = "buildbot-grid-view"; inherit (buildbot-pkg) version; src = fetchPypi { inherit pname version; hash = "sha256-hdF1KopG4nqzHWLpTcYGnhEM6tfYc5WjYaz5xadL3ow="; }; buildInputs = [ buildbot-pkg ]; # No tests doCheck = false; meta = with lib; { homepage = "https://buildbot.net/"; description = "Buildbot Grid View Plugin"; maintainers = with maintainers; [ lopsided98 ]; license = licenses.gpl2; }; }; wsgi-dashboards = buildPythonPackage rec { pname = "buildbot-wsgi-dashboards"; inherit (buildbot-pkg) version; src = fetchPypi { inherit pname version; hash = "sha256-X1gPrwkHVdOdOpu/rVnAn5aZPbhye27udkfzI3aY+WI="; }; buildInputs = [ buildbot-pkg ]; # No tests doCheck = false; meta = with lib; { homepage = "https://buildbot.net/"; description = "Buildbot WSGI dashboards Plugin"; maintainers = with maintainers; [ lopsided98 ]; license = licenses.gpl2; }; }; badges = buildPythonPackage rec { pname = "buildbot-badges"; inherit (buildbot-pkg) version; src = fetchPypi { inherit pname version; hash = "sha256-OXzgS+duQaDR8+lUzSnR85PIIIe9om/lvP9czRE1Ih0="; }; buildInputs = [ buildbot-pkg ]; propagatedBuildInputs = [ cairosvg klein jinja2 ]; # No tests doCheck = false; meta = with lib; { homepage = "https://buildbot.net/"; description = "Buildbot Badges Plugin"; maintainers = with maintainers; [ julienmalka ]; license = licenses.gpl2; }; }; }