20 lines
341 B
Nix
20 lines
341 B
Nix
{ writers, python3Packages }:
|
|
writers.writePython3Bin "pun_sort_api.py" {
|
|
flakeIgnore = [
|
|
"E203"
|
|
"E203"
|
|
"E226"
|
|
"E302"
|
|
"E305"
|
|
"E501"
|
|
"F841"
|
|
"W503"
|
|
];
|
|
libraries = [
|
|
python3Packages.fastapi
|
|
python3Packages.uvicorn
|
|
python3Packages.pydantic
|
|
python3Packages.pydantic-core
|
|
];
|
|
} ./sort_api.py
|