mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 09:23:37 +00:00
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
nixosTests,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "radicale";
|
|
version = "3.3.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Kozea";
|
|
repo = "Radicale";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-vHg5faXx7ILiI3tpQ38yxF96DzS7EZCSRHfIW9QbI9Q=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies =
|
|
with python3.pkgs;
|
|
[
|
|
defusedxml
|
|
passlib
|
|
vobject
|
|
pika
|
|
python-dateutil
|
|
pytz # https://github.com/Kozea/Radicale/issues/816
|
|
]
|
|
++ passlib.optional-dependencies.bcrypt;
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
pytestCheckHook
|
|
waitress
|
|
];
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) radicale;
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://radicale.org/v3.html";
|
|
changelog = "https://github.com/Kozea/Radicale/blob/${src.rev}/CHANGELOG.md";
|
|
description = "CalDAV and CardDAV server";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [
|
|
dotlambda
|
|
erictapen
|
|
];
|
|
};
|
|
}
|