Merge pull request #110682 from helsinki-systems/buildbot_types

nixos/buildbot: add pythonPackages type
master
Sandro 2021-01-24 13:45:05 +01:00 committed by GitHub
commit 0a81d0846a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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.";