ical2orgpy: init at 0.4.0
This commit is contained in:
parent
e803959443
commit
77f2a209e9
32
pkgs/tools/misc/ical2orgpy/default.nix
Normal file
32
pkgs/tools/misc/ical2orgpy/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user