mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-22 08:04:20 +01:00
fed32ecfca
Signed-off-by: Magic_RB <magic_rb@redalder.org>
72 lines
1.7 KiB
Nix
72 lines
1.7 KiB
Nix
# 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; {};
|
|
};
|
|
};
|
|
}
|