calendar-cli: 0.14.1 -> 1.0.1

Diff: https://github.com/tobixen/calendar-cli/compare/v0.14.1...v1.0.1

+8 -2
+8 -2
pkgs/tools/networking/calendar-cli/default.nix
··· 1 1 { lib 2 2 , python3 3 3 , fetchFromGitHub 4 + , nixosTests 4 5 }: 5 6 6 7 python3.pkgs.buildPythonApplication rec { 7 8 pname = "calendar-cli"; 8 - version = "0.14.1"; 9 + version = "1.0.1"; 9 10 10 11 src = fetchFromGitHub { 11 12 owner = "tobixen"; 12 13 repo = "calendar-cli"; 13 14 rev = "v${version}"; 14 - hash = "sha256-VVE4+qoUam2szbMsdWetq6hyhXoE1V3Pw5j/bYbfGVQ="; 15 + hash = "sha256-w35ySLnfxXZR/a7BrPLYqXs2kqkuYhh5PcgNxJqjDtE="; 15 16 }; 16 17 17 18 propagatedBuildInputs = with python3.pkgs; [ 18 19 icalendar 19 20 caldav 20 21 pytz 22 + pyyaml 21 23 tzlocal 22 24 click 23 25 six ··· 25 27 26 28 # tests require networking 27 29 doCheck = false; 30 + 31 + passthru.tests = { 32 + inherit (nixosTests) radicale; 33 + }; 28 34 29 35 meta = with lib; { 30 36 description = "Simple command-line CalDav client";