nixbot: init at unstable-2016-10-09

This commit is contained in:
Robin Gloster 2016-10-08 16:55:39 +02:00
parent 6c9cc19915
commit e904bb4871
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
name = "nixbot-unstable-2016-10-09";
src = fetchFromGitHub {
owner = "domenkozar";
repo = "nixbot";
rev = "dc490e4954cb08f0eff97f74ad39dedb54670aa9";
sha256 = "1l8rlhd2b7x5m79vb2vgszachygasv0pk8drnwgxyvsn0k88xcan";
};
propagatedBuildInputs = with python3Packages; [
pygit2 pyramid waitress github3_py
];
doCheck = false;
meta = with stdenv.lib; {
desciption = "Github bot for reviewing/testing pull requests with the help of Hydra";
maintainers = with maintainers; [ domenkozar fpletz globin ];
license = licenses.asl20;
homepage = https://github.com/domenkozar/nixbot;
};
}

View File

@ -2867,6 +2867,8 @@ in
nitrogen = callPackage ../tools/X11/nitrogen {};
nixbot = callPackage ../tools/misc/nixbot {};
nkf = callPackage ../tools/text/nkf {};
nlopt = callPackage ../development/libraries/nlopt {};