ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / icalendar / default.nix
blob5ef8864417d4457745afc454bde21b2fde7c8d4b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , python-dateutil
6 , pytz
7 }:
9 buildPythonPackage rec {
10   version = "4.1.0";
11   pname = "icalendar";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-l0i3wC78xD5Y0GFa4JdqxPJl6Q2t7ptPiE3imQXBs5U=";
16   };
18   buildInputs = [ setuptools ];
19   propagatedBuildInputs = [ python-dateutil pytz ];
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   };