generated from Luis/nextjs-python-web-template
alejandra has someone questionable choices for formatting that no one would apply to there code if they would format manually. nixpkgs-fmt seems to produce more readable results.
11 lines
217 B
Nix
11 lines
217 B
Nix
{ symlinkJoin
|
|
, writers
|
|
}:
|
|
symlinkJoin {
|
|
name = "clan";
|
|
paths = [
|
|
(writers.writePython3Bin "clan" { } ./clan.py)
|
|
(writers.writePython3Bin "clan-admin" { flakeIgnore = [ "E501" ]; } ./clan-admin.py)
|
|
];
|
|
}
|