2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2019-12-11 21:51:19 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, python3Packages
|
2021-03-25 19:13:05 +00:00
|
|
|
, nixosTests
|
2019-12-11 21:51:19 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "xandikos";
|
2022-01-18 23:19:05 +00:00
|
|
|
version = "0.2.8";
|
2019-12-11 21:51:19 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jelmer";
|
|
|
|
repo = "xandikos";
|
|
|
|
rev = "v${version}";
|
2022-01-18 23:19:05 +00:00
|
|
|
sha256 = "sha256-KDDk0QSOjwivJFz3vLk+g4vZMlSuX2FiOgHJfDJkpwg=";
|
2019-12-11 21:51:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2020-05-05 16:52:52 +01:00
|
|
|
aiohttp
|
2019-12-11 21:51:19 +00:00
|
|
|
dulwich
|
|
|
|
defusedxml
|
|
|
|
icalendar
|
|
|
|
jinja2
|
2020-05-05 16:52:52 +01:00
|
|
|
multidict
|
2021-08-26 01:08:48 +01:00
|
|
|
prometheus-client
|
2019-12-11 21:51:19 +00:00
|
|
|
];
|
|
|
|
|
2021-03-25 19:13:05 +00:00
|
|
|
passthru.tests.xandikos = nixosTests.xandikos;
|
|
|
|
|
2021-09-23 15:23:00 +01:00
|
|
|
checkInputs = with python3Packages; [ pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
|
|
# these tests are failing due to the following error:
|
|
|
|
# TypeError: expected str, bytes or os.PathLike object, not int
|
|
|
|
"test_iter_with_etag"
|
|
|
|
"test_iter_with_etag_missing_uid"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-12-11 21:51:19 +00:00
|
|
|
description = "Lightweight CalDAV/CardDAV server";
|
|
|
|
homepage = "https://github.com/jelmer/xandikos";
|
|
|
|
license = licenses.gpl3Plus;
|
2020-12-26 04:20:00 +00:00
|
|
|
changelog = "https://github.com/jelmer/xandikos/blob/v${version}/NEWS";
|
2020-07-29 11:49:07 +01:00
|
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
2019-12-11 21:51:19 +00:00
|
|
|
};
|
|
|
|
}
|