about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/mutt-ics/default.nix
blob: a8f3ca9d2ae6ef96e8eb0b31a96d72b318a76caf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, python3, fetchPypi }:

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";
    mainProgram = "mutt-ics";
    license = licenses.mit;
    maintainers = with maintainers; [ mh182 ];
  };
}