1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools
5, python-dateutil
6, pytz
7}:
8
9buildPythonPackage rec {
10 version = "4.0.9";
11 pname = "icalendar";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "cc73fa9c848744843046228cb66ea86cd8c18d73a51b140f7c003f760b84a997";
16 };
17
18 buildInputs = [ setuptools ];
19 propagatedBuildInputs = [ python-dateutil pytz ];
20
21 meta = with lib; {
22 description = "A parser/generator of iCalendar files";
23 homepage = "https://icalendar.readthedocs.org/";
24 license = licenses.bsd2;
25 maintainers = with maintainers; [ olcai ];
26 };
27
28}