nixos/buildbot: add pythonPackages type

This commit is contained in:
Fritz Otlinghaus
2021-01-24 13:20:35 +01:00
parent e63d0738a7
commit 72691e14ec

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