1{ lib, buildPythonPackage, fetchPypi
2, tzlocal, requests, vobject, lxml, nose }:
3
4buildPythonPackage rec {
5 pname = "caldav";
6 version = "0.6.2";
7
8 propagatedBuildInputs = [ tzlocal requests vobject lxml nose ];
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "80c33b143539da3a471148ac89512f67d9df3a5286fae5a023e2ad3923246c0d";
13 };
14
15 meta = with lib; {
16 description = "This project is a CalDAV (RFC4791) client library for Python.";
17 homepage = "https://pythonhosted.org/caldav/";
18 license = licenses.asl20;
19 maintainers = with maintainers; [ marenz ];
20 broken = true; # missing xandikos package
21 };
22}