Files
nixpkgs/pkgs/development/python-modules/caldav/2.nix
2026-05-30 13:17:21 -07:00

86 lines
1.6 KiB
Nix

{
buildPythonPackage,
dnspython,
fetchFromGitHub,
hatch-vcs,
hatchling,
icalendar,
icalendar-searcher,
lib,
lxml,
manuel,
niquests,
proxy-py,
pyfakefs,
pytest-asyncio,
pytestCheckHook,
python,
python-dateutil,
pyyaml,
radicale,
recurring-ical-events,
toPythonModule,
tzlocal,
vobject,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "caldav";
version = "2.2.6";
pyproject = true;
src = fetchFromGitHub {
owner = "python-caldav";
repo = "caldav";
tag = "v${version}";
hash = "sha256-xtxWDlYESIwkow/YdjaUAkJ/x2jdUyhqfSRycJVLncY=";
};
build-system = [
hatch-vcs
hatchling
];
dependencies = [
dnspython
lxml
niquests
icalendar
icalendar-searcher
recurring-ical-events
python-dateutil
pyyaml
];
pythonImportsCheck = [ "caldav" ];
nativeCheckInputs = [
manuel
proxy-py
pyfakefs
pytestCheckHook
(toPythonModule (radicale.override { python3 = python; }))
tzlocal
vobject
writableTmpDirAsHomeHook
];
disabledTests = [
# test contacts CalDAV servers on the internet
"test_rfc8764_test_conf"
# succeeds with Xandikos but fails with Radicale
"testConfigfile"
];
__darwinAllowLocalNetworking = true;
meta = {
changelog = "https://github.com/python-caldav/caldav/blob/${src.tag}/CHANGELOG.md";
description = "CalDAV (RFC4791) client library";
homepage = "https://github.com/python-caldav/caldav";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.dotlambda ];
};
}