nixpkgs/pkgs/by-name/ra/radicale/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.1 KiB
Nix
Raw Normal View History

2023-08-30 04:12:38 +00:00
{ lib
, python3
, fetchFromGitHub
, nixosTests
}:
2020-06-20 12:18:58 +00:00
python3.pkgs.buildPythonApplication rec {
2021-04-23 12:44:17 +00:00
pname = "radicale";
2024-05-04 19:23:57 +00:00
version = "3.2.0";
pyproject = true;
2020-06-20 12:18:58 +00:00
2021-04-23 12:44:17 +00:00
src = fetchFromGitHub {
owner = "Kozea";
repo = "Radicale";
rev = "v${version}";
2024-05-04 19:23:57 +00:00
hash = "sha256-RxC8VOfdTXJZiAroDHTKjJqGWu65Z5uyb4WK1LOqubQ=";
2020-06-20 12:18:58 +00:00
};
2021-04-23 12:44:17 +00:00
postPatch = ''
sed -i '/addopts/d' setup.cfg
'';
nativeBuildInputs = with python3.pkgs; [
setuptools
];
2020-06-20 12:18:58 +00:00
propagatedBuildInputs = with python3.pkgs; [
defusedxml
passlib
vobject
2024-05-04 19:23:57 +00:00
pika
2020-06-20 12:18:58 +00:00
python-dateutil
2022-05-17 17:29:14 +00:00
pytz # https://github.com/Kozea/Radicale/issues/816
] ++ passlib.optional-dependencies.bcrypt;
2020-06-20 12:18:58 +00:00
2023-08-30 04:12:38 +00:00
__darwinAllowLocalNetworking = true;
nativeCheckInputs = with python3.pkgs; [
2024-03-24 22:51:22 +00:00
pytest7CheckHook
2020-06-20 12:18:58 +00:00
waitress
];
2021-04-23 13:13:36 +00:00
passthru.tests = {
inherit (nixosTests) radicale;
};
2020-06-20 12:18:58 +00:00
meta = with lib; {
homepage = "https://radicale.org/v3.html";
changelog = "https://github.com/Kozea/Radicale/blob/${src.rev}/CHANGELOG.md";
2020-06-20 12:18:58 +00:00
description = "CalDAV and CardDAV server";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dotlambda erictapen ];
2020-06-20 12:18:58 +00:00
};
}