latte-dock: 0.9.11 -> 0.9.12
[NixPkgs.git] / pkgs / tools / networking / calendar-cli / default.nix
blob497b77b57ac0aeddc67b83467c46fe8baaa35274
1 { lib
2 , python3
3 , fetchFromGitHub
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "calendar-cli";
8   version = "0.12.0";
10   src = fetchFromGitHub {
11     owner = "tobixen";
12     repo = "calendar-cli";
13     rev = "v${version}";
14     sha256 = "0qjld2m7hl3dx90491pqbjcja82c1f5gwx274kss4lkb8aw0kmlv";
15   };
17   propagatedBuildInputs = with python3.pkgs; [
18     icalendar
19     caldav
20     pytz
21     tzlocal
22     six
23   ];
25   # tests require networking
26   doCheck = false;
28   meta = with lib; {
29     description = "Simple command-line CalDav client";
30     homepage = "https://github.com/tobixen/calendar-cli";
31     license = licenses.gpl3Plus;
32     maintainers = with maintainers; [ dotlambda ];
33   };