about summary refs log tree commit diff
path: root/pkgs/tools/networking/mutt-ics
diff options
context:
space:
mode:
authorMax Hofer <mh182@chello.at>2022-03-01 14:52:41 +0100
committerMax Hofer <mh182@chello.at>2022-03-01 15:32:12 +0100
commit322a608a5e71dfcaf74cb66dd0cb2689947b68c0 (patch)
treed794b10af57d7ea4d71fda6041eebdfb9da2533c /pkgs/tools/networking/mutt-ics
parent02cfe6827a2a19341fe7e2ffdf13c8994141105a (diff)
mutt-ics: add new package
Diffstat (limited to 'pkgs/tools/networking/mutt-ics')
-rw-r--r--pkgs/tools/networking/mutt-ics/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/networking/mutt-ics/default.nix b/pkgs/tools/networking/mutt-ics/default.nix
new file mode 100644
index 0000000000000..4193690dc3d7e
--- /dev/null
+++ b/pkgs/tools/networking/mutt-ics/default.nix
@@ -0,0 +1,21 @@
+{ lib, python3 }:
+
+with python3.pkgs; buildPythonApplication rec {
+  pname = "mutt-ics";
+  version = "0.9.2";
+
+  src = fetchPypi {
+    inherit version;
+    pname = "mutt_ics";
+    sha256 = "d44d4bec4e71c7f14df01b90fdb9563cdc784ece4250abfea5b0b675cfe85a50";
+  };
+
+  propagatedBuildInputs = [ icalendar ];
+
+  meta = with lib; {
+    homepage = "https://github.com/dmedvinsky/mutt-ics";
+    description = "A tool to show calendar event details in Mutt";
+    license = licenses.mit;
+    maintainers = with maintainers; [ mh182 ];
+  };
+}