summaryrefslogtreecommitdiff
path: root/pkgs/tools/networking/calendar-cli/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking/calendar-cli/default.nix')
-rw-r--r--pkgs/tools/networking/calendar-cli/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/tools/networking/calendar-cli/default.nix b/pkgs/tools/networking/calendar-cli/default.nix
new file mode 100644
index 000000000000..497b77b57ac0
--- /dev/null
+++ b/pkgs/tools/networking/calendar-cli/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, python3
+, fetchFromGitHub
+}:
+
+python3.pkgs.buildPythonApplication rec {
+ pname = "calendar-cli";
+ version = "0.12.0";
+
+ src = fetchFromGitHub {
+ owner = "tobixen";
+ repo = "calendar-cli";
+ rev = "v${version}";
+ sha256 = "0qjld2m7hl3dx90491pqbjcja82c1f5gwx274kss4lkb8aw0kmlv";
+ };
+
+ propagatedBuildInputs = with python3.pkgs; [
+ icalendar
+ caldav
+ pytz
+ tzlocal
+ six
+ ];
+
+ # tests require networking
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Simple command-line CalDav client";
+ homepage = "https://github.com/tobixen/calendar-cli";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ dotlambda ];
+ };
+}