Merge pull request #162386 from mh182/mutt-ics

mutt-ics: add new package
This commit is contained in:
Sandro 2022-04-08 12:07:15 +02:00 committed by GitHub
commit 1c66b1f06d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 0 deletions

View File

@ -8091,6 +8091,12 @@
githubId = 20536514;
name = "Magdalena Haselsteiner";
};
mh182 = {
email = "mh182@chello.at";
github = "mh182";
githubId = 9980864;
name = "Max Hofer";
};
mic92 = {
email = "joerg@thalheim.io";
matrix = "@mic92:nixos.dev";

View File

@ -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 ];
};
}

View File

@ -27847,6 +27847,8 @@ with pkgs;
};
mutt-wizard = callPackage ../tools/misc/mutt-wizard { };
mutt-ics = callPackage ../tools/networking/mutt-ics { };
mwic = callPackage ../applications/misc/mwic {
pythonPackages = python3Packages;
};