Delete ical2org completely

Signed-off-by: magic_rb <richard@brezak.sk>
This commit is contained in:
magic_rb 2023-10-22 16:56:31 +02:00
parent 3ad614d4a5
commit 671aff30e4
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E
2 changed files with 0 additions and 72 deletions

View file

@ -9,7 +9,6 @@
udp-over-tcp
emacsclient-remote
zfs-relmount
ical2org
itp
])
++

View file

@ -1,71 +0,0 @@
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
#
# SPDX-License-Identifier: LGPL-3.0-or-later
{ inputs, ... }:
{
flake.overlays.ical2org =
final: prev: {
x-wr-timezone = with prev;
python3.pkgs.buildPythonPackage rec {
pname = "x_wr_timezone";
version = "0.0.5";
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "sha256-wFyzS5tYpGB6eI2whtyuV2ZyjkuU4GcocNxVk6bhP+Y=";
};
propagatedBuildInputs = with python3.pkgs; [
pytz
icalendar
pygments
restructuredtext_lint
pytest
];
meta = with lib; {};
};
recurring-ical-events = with prev;
python3.pkgs.buildPythonPackage rec {
pname = "recurring_ical_events";
version = "1.0.2b0";
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "sha256-aoQU7rxRJvqe3PLHPto5T2rCvFSkmqfiClwCL6SRjk0=";
};
propagatedBuildInputs = with python3.pkgs; [
pytz
python-dateutil
final.x-wr-timezone
tzdata
pytest-cov
pbr
];
meta = with lib; {};
};
ical2orgpy = with prev;
python3.pkgs.buildPythonApplication rec {
pname = "ical2orgpy";
version = "0.4.0";
src = inputs.ical2org;
PBR_VERSION="1.2.3";
propagatedBuildInputs = with python3.pkgs; [
click
future
icalendar
pytz
tzlocal
final.recurring-ical-events
];
meta = with prev.lib; {};
};
};
}