Files
to-hen/pun-sort/default.nix

22 lines
363 B
Nix
Raw Normal View History

2025-12-28 22:12:51 +01:00
{ writers, python3Packages }:
writers.writePython3Bin "pun_sort_api.py" {
flakeIgnore = [
"E203"
"E203"
"E226"
2025-12-28 22:31:09 +01:00
"E265"
2025-12-28 22:12:51 +01:00
"E302"
"E305"
"E501"
2025-12-28 22:31:09 +01:00
"F401"
2025-12-28 22:12:51 +01:00
"F841"
"W503"
];
libraries = [
python3Packages.fastapi
python3Packages.uvicorn
python3Packages.pydantic
python3Packages.pydantic-core
];
} ./sort_api.py