depot/third_party/nixpkgs/pkgs/servers/xandikos/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

33 lines
690 B
Nix

{ stdenv
, fetchFromGitHub
, python3Packages
}:
python3Packages.buildPythonApplication rec {
pname = "xandikos";
version = "0.2.3";
src = fetchFromGitHub {
owner = "jelmer";
repo = "xandikos";
rev = "v${version}";
sha256 = "1x0bylmdizirvlcn6ryd43lffpmlq0cklj3jz956scmxgq4p6wby";
};
propagatedBuildInputs = with python3Packages; [
aiohttp
dulwich
defusedxml
icalendar
jinja2
multidict
prometheus_client
];
meta = with stdenv.lib; {
description = "Lightweight CalDAV/CardDAV server";
homepage = "https://github.com/jelmer/xandikos";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ _0x4A6F ];
};
}