8 python3.pkgs.buildPythonApplication rec {
9 pname = "calendar-cli";
13 src = fetchFromGitHub {
15 repo = "calendar-cli";
17 hash = "sha256-w35ySLnfxXZR/a7BrPLYqXs2kqkuYhh5PcgNxJqjDtE=";
20 build-system = with python3.pkgs; [
24 dependencies = with python3.pkgs; [
34 # tests require networking
38 inherit (nixosTests) radicale;
42 description = "Simple command-line CalDav client";
43 homepage = "https://github.com/tobixen/calendar-cli";
44 license = licenses.gpl3Plus;
45 mainProgram = "calendar-cli";
46 maintainers = with maintainers; [ dotlambda ];