Skip to content

Commit

Permalink
Fill in descriptions in kernels.python3.packages
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Sep 24, 2024
1 parent 422f92c commit 4d13b44
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/kernels/python/module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ in
{
options = {
kernels.python3 = mkOptions (mkOption {
description = "Python 3 version";
type = types.enum (
["python3"]
++ (builtins.filter (n: builtins.match "^python3[0-9]*$" n != null) (builtins.attrNames config.pkgs))
Expand All @@ -95,6 +96,7 @@ in
});

kernels.pypy3 = mkOptions (mkOption {
description = "PyPy 3 version";
type = types.enum (
["pypy3"]
++ (builtins.filter (n: builtins.match "^pypy3[0-9]*$" n != null) (builtins.attrNames config.pkgs))
Expand Down

0 comments on commit 4d13b44

Please sign in to comment.