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