Compare commits

...

2 Commits

Author SHA1 Message Date
Michael Lehmann
827a2ae354 Add intial main.py file 2025-10-05 12:50:53 +02:00
Michael Lehmann
31e2a102bd Add additional Packages 2025-10-05 12:50:41 +02:00
2 changed files with 12 additions and 1 deletions

View File

@@ -6,7 +6,11 @@
};
};
packages = [];
packages = [
pkgs.python313Packages.click
pkgs.python313Packages.ebooklib
pkgs.python313Packages.requests
];
git-hooks = {
enable = true;

7
main.py Normal file
View File

@@ -0,0 +1,7 @@
def main() -> None:
"""main function."""
pass
if __name__ == "__main__":
main()