From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 13/17] gnu: Add python-icalendar. Date: Sun, 3 Jan 2016 19:05:11 -0500 Message-ID: References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45880) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aFseM-0005a8-3h for guix-devel@gnu.org; Sun, 03 Jan 2016 19:05:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aFseI-000631-KL for guix-devel@gnu.org; Sun, 03 Jan 2016 19:05:25 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:56052) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aFseI-00062w-Ge for guix-devel@gnu.org; Sun, 03 Jan 2016 19:05:22 -0500 Received: from jasmine.lan (c-69-249-5-231.hsd1.pa.comcast.net [69.249.5.231]) by mail.messagingengine.com (Postfix) with ESMTPA id D889AC013FE for ; Sun, 3 Jan 2016 19:05:20 -0500 (EST) In-Reply-To: In-Reply-To: References: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/python.scm (python-icalendar): New variable. --- gnu/packages/python.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 2f7c14e..7478472 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6842,3 +6842,23 @@ your Web app.") processes across test runs.") (home-page "https://bitbucket.org/pytest-dev/pytest-xprocess") (license license:expat))) + +(define-public python-icalendar + (package + (name "python-icalendar") + (version "3.9.1") + (source (origin + (method url-fetch) + (uri (pypi-uri "icalendar" version)) + (sha256 + (base32 + "0fhrczdj3jxy5bvswphp3vys7vwv5c9bpwg7asykqwa3z6253q6q")))) + (build-system python-build-system) + (propagated-inputs + `(("python-dateutil-2" ,python-dateutil-2) + ("python-pytz" ,python-pytz))) + (synopsis "Python library for parsing iCalendar files") + (description "The icalendar package is a parser/generator of iCalendar +files for use with Python.") + (home-page "https://github.com/collective/icalendar") + (license bsd-2))) -- 2.6.4