mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
, nixosTests
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "xandikos";
|
|
version = "0.2.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jelmer";
|
|
repo = "xandikos";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Epy6NWtRY2Oj4MHTStdv8ZJ5SvSmUo6IlwL5PJV9pD0=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
aiohttp
|
|
dulwich
|
|
defusedxml
|
|
icalendar
|
|
jinja2
|
|
multidict
|
|
prometheus-client
|
|
];
|
|
|
|
passthru.tests.xandikos = nixosTests.xandikos;
|
|
|
|
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"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight CalDAV/CardDAV server";
|
|
homepage = "https://github.com/jelmer/xandikos";
|
|
license = licenses.gpl3Plus;
|
|
changelog = "https://github.com/jelmer/xandikos/blob/v${version}/NEWS";
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
|
};
|
|
}
|