We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5db48b4 commit 6504b13Copy full SHA for 6504b13
nix/modules/template.nix
@@ -12,10 +12,15 @@
12
template = templates.default;
13
params = [
14
{
15
- name = "package-name";
16
- description = "Name of the Python package";
+ name = "package-name-kebab-case";
+ description = "Name of the Python package (kebab-case)";
17
placeholder = "python-nix-template";
18
}
19
+ {
20
+ name = "package-name-snake-case";
21
+ description = "Name of the Python package (snake_case)";
22
+ placeholder = "python_nix_template";
23
+ }
24
25
name = "git-org";
26
description = "GitHub organization or user name";
0 commit comments