pun-sort: package api
This commit is contained in:
19
pun-sort/default.nix
Normal file
19
pun-sort/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ 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
|
||||
Reference in New Issue
Block a user