Merge pull request #110682 from helsinki-systems/buildbot_types

nixos/buildbot: add pythonPackages type
This commit is contained in:
Sandro
2021-01-24 13:45:05 +01:00
committed by GitHub

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