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
commit 0a81d0846a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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