3
0
Fork 0
forked from mirrors/nixpkgs

python-packages: icalendar 3.8.4 -> 3.9.0

dateutil is a new depencency for icalendar 3.9.0.
This commit is contained in:
Erik Timan 2015-05-09 19:45:09 +00:00 committed by Domen Kožar
parent 7dbe0ff77b
commit d57a93f04b

View file

@ -6063,16 +6063,16 @@ let
};
icalendar = buildPythonPackage rec {
version = "3.8.4";
version = "3.9.0";
name = "icalendar-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/i/icalendar/${name}.zip";
md5 = "d700e6e75613fd1ee882c4b11c58940c";
url = "https://pypi.python.org/packages/source/i/icalendar/${name}.tar.gz";
md5 = "072c67a4c461864abd604631d7cf67e7";
};
buildInputs = with self; [ setuptools ];
propagatedBuildInputs = with self; [ pytz ];
propagatedBuildInputs = with self; [ dateutil pytz ];
meta = with stdenv.lib; {
description = "A parser/generator of iCalendar files";