1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools
5, python-dateutil
6, pytz
7}:
8
9buildPythonPackage rec {
10 version = "4.1.0";
11 pname = "icalendar";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "sha256-l0i3wC78xD5Y0GFa4JdqxPJl6Q2t7ptPiE3imQXBs5U=";
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}