* 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 <tipec...@gmail.com> +;;; +;;; 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 <http://www.gnu.org/licenses/>. + +(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