Custom emails watcher

This commit is contained in:
Andrea Ciceri 2024-09-28 23:59:59 +02:00
parent 60b8c06011
commit af395cafcb
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
3 changed files with 69 additions and 3 deletions

View file

@ -0,0 +1,12 @@
{
writers,
python3Packages,
...
}:
writers.writePython3Bin "emails-watcher" {
libraries = with python3Packages; [
watchdog
desktop-notifier
];
flakeIgnore = [ ];
} (builtins.readFile ./emails-watcher.py)