From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: =?UTF-8?q?=5BPATCH=202/3=5D=20gnu=3A=20Add=20pytz=2E?= Date: Thu, 23 May 2013 04:08:28 +0200 Message-ID: <1369274909-7297-3-git-send-email-tipecaml@gmail.com> References: <1369274909-7297-1-git-send-email-tipecaml@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:39284) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UfL5H-00047E-I3 for bug-guix@gnu.org; Wed, 22 May 2013 22:16:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UfL5C-0004BE-NL for bug-guix@gnu.org; Wed, 22 May 2013 22:16:51 -0400 Received: from mail-wg0-x232.google.com ([2a00:1450:400c:c00::232]:35629) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UfL5C-0004B8-I2 for bug-guix@gnu.org; Wed, 22 May 2013 22:16:46 -0400 Received: by mail-wg0-f50.google.com with SMTP id k13so1827577wgh.29 for ; Wed, 22 May 2013 19:16:45 -0700 (PDT) In-Reply-To: <1369274909-7297-1-git-send-email-tipecaml@gmail.com> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: bug-guix@gnu.org * gnu/packages/pytz.scm: New file. * Makefile.am (MODULES): Add it. --- Makefile.am | 1 + gnu/packages/pytz.scm | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 gnu/packages/pytz.scm diff --git a/Makefile.am b/Makefile.am index e6c21f9..0a08edb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -171,6 +171,7 @@ MODULES = \ gnu/packages/popt.scm \ gnu/packages/pth.scm \ gnu/packages/python.scm \ + gnu/packages/pytz.scm \ gnu/packages/qemu.scm \ gnu/packages/ratpoison.scm \ gnu/packages/readline.scm \ diff --git a/gnu/packages/pytz.scm b/gnu/packages/pytz.scm new file mode 100644 index 0000000..d4869cd --- /dev/null +++ b/gnu/packages/pytz.scm @@ -0,0 +1,43 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2013 Cyril Roelandt +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages pytz) + #:use-module (guix licenses) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix build-system python)) + +(define-public pytz + (package + (name "pytz") + (version "2013b") + (source + (origin + (method url-fetch) + (uri (string-append "https://launchpad.net/pytz/main/" version + "/+download/pytz-" version ".tar.bz2")) + (sha256 + (base32 + "19giwgfcrg0nr1gdv49qnmf2jb2ilkcfc7qyqvfpz4dp0p64ksv5")))) + (build-system python-build-system) + (home-page "https://launchpad.net/pytz") + (synopsis "The Python timezone library.") + (description + "This library allows accurate and cross platform timezone calculations +using Python 2.4 or higher and provides access to the Olson timezone database.") + (license x11))) -- 1.7.10.4