c6ca5b8f13
GitOrigin-RevId: e4d49de45a3b5dbcb881656b4e3986e666141ea9
28 lines
574 B
Nix
28 lines
574 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, python-dateutil
|
|
, pytz
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "4.1.0";
|
|
pname = "icalendar";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-l0i3wC78xD5Y0GFa4JdqxPJl6Q2t7ptPiE3imQXBs5U=";
|
|
};
|
|
|
|
buildInputs = [ setuptools ];
|
|
propagatedBuildInputs = [ python-dateutil pytz ];
|
|
|
|
meta = with lib; {
|
|
description = "A parser/generator of iCalendar files";
|
|
homepage = "https://icalendar.readthedocs.org/";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ olcai ];
|
|
};
|
|
|
|
}
|