summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/buildbot/worker.nix
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
committerRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
commit4bc5fbef9d159e143fb7e2c3231932e6e76f667c (patch)
treee2198f5c552e0667d838b8ec764ddb3a4d8f6dec /pkgs/development/python-modules/buildbot/worker.nix
parentjq: fix build with structured-attrs on darwin (diff)
parentMerge pull request #123802 from superherointj/package-virtmanager-bugfix (diff)
downloadnixpkgs-origin/structured-attrs.tar.gz
Merge remote-tracking branch 'upstream/master' into structured-attrsorigin/structured-attrs
Diffstat (limited to 'pkgs/development/python-modules/buildbot/worker.nix')
-rw-r--r--pkgs/development/python-modules/buildbot/worker.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/buildbot/worker.nix b/pkgs/development/python-modules/buildbot/worker.nix
index 242849e2c79e..4313d16d0b77 100644
--- a/pkgs/development/python-modules/buildbot/worker.nix
+++ b/pkgs/development/python-modules/buildbot/worker.nix
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi, buildbot, setuptoolsTrial, mock, twisted,
- future, coreutils }:
+ future, coreutils, nixosTests }:
buildPythonPackage (rec {
pname = "buildbot-worker";
@@ -7,7 +7,7 @@ buildPythonPackage (rec {
src = fetchPypi {
inherit pname version;
- sha256 = "0n5p9x9gz276nv1m8vn3d74jfbd35gff332cjxxqvabk06iqcjp6";
+ sha256 = "0q16vgvlhiybq5rhva9kcj5v2mhfpdb5czm2vng4rrfqqiqq918m";
};
propagatedBuildInputs = [ twisted future ];
@@ -19,10 +19,14 @@ buildPythonPackage (rec {
--replace /usr/bin/tail "${coreutils}/bin/tail"
'';
+ passthru.tests = {
+ smoke-test = nixosTests.buildbot;
+ };
+
meta = with lib; {
homepage = "https://buildbot.net/";
description = "Buildbot Worker Daemon";
- maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ];
+ maintainers = with maintainers; [ ryansydnor lopsided98 ];
license = licenses.gpl2;
};
})