13c8469938
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-icalendar/versions
29 lines
570 B
Nix
29 lines
570 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, dateutil
|
|
, pytz
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "4.0.3";
|
|
pname = "icalendar";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0mk3dk1dxkcm46jy48v27j2w2349iv4sbimqj1yb5js43mx49hh7";
|
|
};
|
|
|
|
buildInputs = [ setuptools ];
|
|
propagatedBuildInputs = [ dateutil pytz ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A parser/generator of iCalendar files";
|
|
homepage = "http://icalendar.readthedocs.org/";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ olcai ];
|
|
};
|
|
|
|
}
|