about summary refs log tree commit diff
path: root/pkgs/development/python-modules/caldav/default.nix
blob: 027bc1784d1c2e327ba4b97947e163911926db9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildPythonPackage, fetchPypi
, tzlocal, requests, vobject, lxml }:

buildPythonPackage rec {
  pname = "caldav";
  version = "0.6.0";

  propagatedBuildInputs = [ tzlocal requests vobject lxml ];

  src = fetchPypi {
    inherit pname version;
    sha256 = "1ll9knpc50yxx858hrvfnapdi2a6g1pz9cnjhwffry2x7r4ckarz";
  };

  meta = with lib; {
    description = "This project is a CalDAV (RFC4791) client library for Python.";
    homepage = "https://pythonhosted.org/caldav/";
    license = licenses.asl20;
    maintainers = with maintainers; [ marenz ];
  };
}