summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-24 13:45:05 +0100
committerGitHub <noreply@github.com>2021-01-24 13:45:05 +0100
commit0a81d0846a0dfcbe8627310e3b4e24fa80d0f758 (patch)
tree2a488f07bc04eee91efb42805a408a37bfba3ff6 /nixos
parent0d71519d68a0196f4fbff27836150c295eaee824 (diff)
parent72691e14ec2616aa359c6395265464d7a57cd918 (diff)
Merge pull request #110682 from helsinki-systems/buildbot_types
nixos/buildbot: add pythonPackages type
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/continuous-integration/buildbot/master.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/continuous-integration/buildbot/master.nix b/nixos/modules/services/continuous-integration/buildbot/master.nix
index e1950b91382b..d30d94c53cc3 100644
--- a/nixos/modules/services/continuous-integration/buildbot/master.nix
+++ b/nixos/modules/services/continuous-integration/buildbot/master.nix
@@ -223,6 +223,7 @@ in {
};
pythonPackages = mkOption {
+ type = types.listOf types.package;
default = pythonPackages: with pythonPackages; [ ];
defaultText = "pythonPackages: with pythonPackages; [ ]";
description = "Packages to add the to the PYTHONPATH of the buildbot process.";