15 lines
237 B
Nix
15 lines
237 B
Nix
|
{ depot, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
sync-to-dir = depot.users.Profpatsch.writers.python3
|
||
|
{
|
||
|
name = "sync-ics-to-dir";
|
||
|
libraries = (py: [
|
||
|
py.httpx
|
||
|
py.icalendar
|
||
|
]);
|
||
|
} ./sync-ics-to-dir.py;
|
||
|
|
||
|
in
|
||
|
sync-to-dir
|