Merge pull request #5218 from olcai/icalendar
Add pythonPackages.icalendar
This commit is contained in:
commit
24c0b84bea
|
@ -115,6 +115,7 @@
|
|||
nslqqq = "Nikita Mikhailov <nslqqq@gmail.com>";
|
||||
ocharles = "Oliver Charles <ollie@ocharles.org.uk>";
|
||||
offline = "Jaka Hudoklin <jakahudoklin@gmail.com>";
|
||||
olcai = "Erik Timan <dev@timan.info>";
|
||||
orbitz = "Malcolm Matalka <mmatalka@gmail.com>";
|
||||
page = "Carles Pagès <page@cubata.homelinux.net>";
|
||||
pashev = "Igor Pashev <pashev.igor@gmail.com>";
|
||||
|
|
|
@ -4672,6 +4672,26 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
icalendar = buildPythonPackage rec {
|
||||
version = "3.8.4";
|
||||
name = "icalendar-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/i/icalendar/${name}.zip";
|
||||
md5 = "d700e6e75613fd1ee882c4b11c58940c";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ setuptools ];
|
||||
propagatedBuildInputs = with self; [ pytz ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A parser/generator of iCalendar files";
|
||||
homepage = "http://icalendar.readthedocs.org/";
|
||||
license = licenses.bsd2;
|
||||
maintainers = [ maintainers.olcai ];
|
||||
};
|
||||
};
|
||||
|
||||
importlib = if isPy26 then (buildPythonPackage {
|
||||
name = "importlib-1.0.2";
|
||||
src = pkgs.fetchurl {
|
||||
|
|
Loading…
Reference in New Issue