1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/servers/radicale/3.x.nix

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

54 lines
1.1 KiB
Nix
Raw Normal View History

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