Merge pull request #203015 from StillerHarpo/ical2orgpy

ical2orgpy: init at 0.4.0
This commit is contained in:
Doron Behar 2023-06-09 09:54:04 +03:00 committed by GitHub
commit 1760dc90c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -31671,6 +31671,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 { };