9 lines
201 B
Nix
9 lines
201 B
Nix
{ python3Packages
|
|
, writers
|
|
}: writers.writePython3Bin "updateIndex" {
|
|
flakeIgnore = [ "E501" ];
|
|
libraries = with python3Packages; [
|
|
meilisearch
|
|
];
|
|
} (builtins.readFile ./default.py)
|