mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-22 08:04:20 +01:00
Delete ical2org completely
Signed-off-by: magic_rb <richard@brezak.sk>
This commit is contained in:
parent
3ad614d4a5
commit
671aff30e4
|
@ -9,7 +9,6 @@
|
|||
udp-over-tcp
|
||||
emacsclient-remote
|
||||
zfs-relmount
|
||||
ical2org
|
||||
itp
|
||||
])
|
||||
++
|
||||
|
|
|
@ -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; {};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue