ical2orgpy: init at 0.4.0

This commit is contained in:
Florian Engel 2022-11-26 11:10:20 +01:00 committed by Florian Engel
parent e803959443
commit 77f2a209e9
No known key found for this signature in database
GPG Key ID: 76762421D45837DE
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib, python3Packages, ... }:
python3Packages.buildPythonPackage rec {
pname = "ical2orgpy";
version = "0.4.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-7/kWW1oTSJXPJtN02uIDrFdNJ9ExKRUa3tUNA0oJSoc=";
};
disabled = python3Packages.pythonOlder "3.9";
propagatedBuildInputs = with python3Packages; [
click
future
icalendar
pytz
tzlocal
recurring-ical-events
];
checkInputs = with python3Packages; [ freezegun pytest pyyaml ];
nativeBuildInputs = [ python3Packages.pbr ];
meta = with lib; {
description = "Converting ICAL file into org-mode format.";
homepage = "https://github.com/ical2org-py/ical2org.py";
license = licenses.gpl3;
maintainers = with maintainers; [ StillerHarpo ];
};
}

View File

@ -31667,6 +31667,8 @@ with pkgs;
i810switch = callPackage ../os-specific/linux/i810switch { };
ical2orgpy = callPackage ../tools/misc/ical2orgpy { };
icewm = callPackage ../applications/window-managers/icewm { };
icon-library = callPackage ../applications/graphics/icon-library { };