Merge pull request #111505 from lopsided98/buildbot-python-packages-type

This commit is contained in:
Jörg Thalheim 2021-02-01 17:48:51 +00:00 committed by GitHub
commit df3df8c0e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -223,7 +223,7 @@ in {
};
pythonPackages = mkOption {
type = types.listOf types.package;
type = types.functionTo (types.listOf types.package);
default = pythonPackages: with pythonPackages; [ ];
defaultText = "pythonPackages: with pythonPackages; [ ]";
description = "Packages to add the to the PYTHONPATH of the buildbot process.";
@ -283,5 +283,5 @@ in {
'')
];
meta.maintainers = with lib.maintainers; [ nand0p mic92 ];
meta.maintainers = with lib.maintainers; [ nand0p mic92 lopsided98 ];
}