diff options
author | tv <tv@krebsco.de> | 2016-11-18 14:44:18 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-11-18 14:44:18 +0100 |
commit | 151ca19a6e67e0c7644f489069cfbc17cec71187 (patch) | |
tree | f84467f88558afb721ca716cc582e6d0b9abadf3 /krebs/5pkgs/buildbot/worker.nix | |
parent | 0f523dfd8a560aa5f5e36c90d47e2322f3dd7882 (diff) | |
parent | 0155fc32e1b79bc25fdfc81ee8460438b70ba128 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'krebs/5pkgs/buildbot/worker.nix')
-rw-r--r-- | krebs/5pkgs/buildbot/worker.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/krebs/5pkgs/buildbot/worker.nix b/krebs/5pkgs/buildbot/worker.nix new file mode 100644 index 000000000..c100de5d2 --- /dev/null +++ b/krebs/5pkgs/buildbot/worker.nix @@ -0,0 +1,24 @@ +{ pkgs, stdenv, fetchurl, pythonPackages }: +pythonPackages.buildPythonApplication (rec { + name = "${pname}-${version}"; + pname = "buildbot-worker"; + version = "0.9.1"; + + doCheck = false; + src = fetchurl { + url = "mirror://pypi/b/${pname}/${name}.tar.gz"; + sha256 = "00p9l1qz6mx12npjwsycp8f9a8f2har15ig79pfsg8z7a7yw93hx"; + }; + + buildInputs = with pythonPackages; [ setuptoolsTrial mock ]; + propagatedBuildInputs = with pythonPackages; [ twisted future pkgs.treq ]; + + meta = with stdenv.lib; { + homepage = http://buildbot.net/; + description = "Buildbot Worker Daemon"; + maintainers = with maintainers; [ nand0p ryansydnor ]; + platforms = platforms.all; + license = licenses.gpl2; + }; +}) + |