summary refs log tree commit diff
diff options
context:
space:
mode:
authorFritz Otlinghaus <fritz@otlinghaus.it>2021-01-24 13:20:35 +0100
committerFritz Otlinghaus <fritz@otlinghaus.it>2021-01-24 13:20:35 +0100
commit72691e14ec2616aa359c6395265464d7a57cd918 (patch)
tree416209df066751615de346a9876bda8ba9d515aa
parente63d0738a7e81c463342003810046c483c2ef745 (diff)
nixos/buildbot: add pythonPackages type
-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 e1950b91382bd..d30d94c53cc33 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.";