7 python3.pkgs.buildPythonApplication rec {
8 pname = "calendar-cli";
12 src = fetchFromGitHub {
14 repo = "calendar-cli";
16 hash = "sha256-w35ySLnfxXZR/a7BrPLYqXs2kqkuYhh5PcgNxJqjDtE=";
19 build-system = with python3.pkgs; [
23 dependencies = with python3.pkgs; [
33 # tests require networking
37 inherit (nixosTests) radicale;
41 description = "Simple command-line CalDav client";
42 homepage = "https://github.com/tobixen/calendar-cli";
43 license = licenses.gpl3Plus;
44 mainProgram = "calendar-cli";
45 maintainers = with maintainers; [ dotlambda ];