python-packages: icalendar 3.8.4 -> 3.9.0
dateutil is a new depencency for icalendar 3.9.0.
This commit is contained in:
parent
82da4096ad
commit
f541c61e22
|
@ -6061,16 +6061,16 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
icalendar = buildPythonPackage rec {
|
icalendar = buildPythonPackage rec {
|
||||||
version = "3.8.4";
|
version = "3.9.0";
|
||||||
name = "icalendar-${version}";
|
name = "icalendar-${version}";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://pypi.python.org/packages/source/i/icalendar/${name}.zip";
|
url = "https://pypi.python.org/packages/source/i/icalendar/${name}.tar.gz";
|
||||||
md5 = "d700e6e75613fd1ee882c4b11c58940c";
|
md5 = "072c67a4c461864abd604631d7cf67e7";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with self; [ setuptools ];
|
buildInputs = with self; [ setuptools ];
|
||||||
propagatedBuildInputs = with self; [ pytz ];
|
propagatedBuildInputs = with self; [ dateutil pytz ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A parser/generator of iCalendar files";
|
description = "A parser/generator of iCalendar files";
|
||||||
|
|
Loading…
Reference in New Issue