nixbot: init at unstable-2016-10-09
This commit is contained in:
parent
6c9cc19915
commit
e904bb4871
25
pkgs/tools/misc/nixbot/default.nix
Normal file
25
pkgs/tools/misc/nixbot/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user