mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
29 lines
571 B
Nix
29 lines
571 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 = "https://icalendar.readthedocs.org/";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ olcai ];
|
|
};
|
|
|
|
}
|