gnu: Update python-pytz to 2017.2.

* gnu/packages/python.scm (python-pytz, python2-pytz): Update to 2017.2.

Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
Muriithi Frederick Muriuki 2017-07-18 11:37:05 +03:00 committed by Ricardo Wurmus
parent de469015c4
commit 3fee003950
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 10 additions and 8 deletions

View File

@ -43,6 +43,7 @@
;;; Copyright © 2017 Roel Janssen <roel@gnu.org> ;;; Copyright © 2017 Roel Janssen <roel@gnu.org>
;;; Copyright © 2017 Kei Kebreau <kei@openmailbox.org> ;;; Copyright © 2017 Kei Kebreau <kei@openmailbox.org>
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com> ;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
;;; Copyright © 2017 Muriithi Frederick Muriuki <fredmanglis@gmail.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -653,27 +654,28 @@ on localhost.")
(define-public python-pytz (define-public python-pytz
(package (package
(name "python-pytz") (name "python-pytz")
(version "2016.10") (version "2017.2")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "pytz" version ".tar.bz2")) (uri (pypi-uri "pytz" version ".zip"))
(sha256 (sha256
(base32 (base32
"0az099cyp6p5xbsvfcdacj4hvxncbwm2ayn3h55mcp07zb2b45kh")))) "12cmd3j46d2gcw08bspvp6s9icfcvx88zjz52n1bli9dyvl5dh7m"))))
(build-system python-build-system) (build-system python-build-system)
(arguments `(#:tests? #f)) ; no test target (native-inputs
`(("unzip" ,unzip)))
(home-page "http://pythonhosted.org/pytz") (home-page "http://pythonhosted.org/pytz")
(synopsis "Python timezone library") (synopsis "Python timezone library")
(description (description "This library brings the Olson tz database into Python. It
"This library allows accurate and cross platform timezone calculations allows accurate and cross platform timezone calculations using Python 2.4 or
using Python 2.4 or higher and provides access to the Olson timezone database.") higher. It also solves the issue of ambiguous times at the end of daylight
saving time. Almost all of the Olson timezones are supported.")
(license license:expat))) (license license:expat)))
(define-public python2-pytz (define-public python2-pytz
(package-with-python2 python-pytz)) (package-with-python2 python-pytz))
(define-public python-babel (define-public python-babel
(package (package
(name "python-babel") (name "python-babel")