gnu: python-pytz: Update to 2015.7.
* gnu/packages/python.scm (python-pytz): Update to 2015.7. [source]: Change uri to pypi's location. [home-page]: Change to new website. [license]: Change to expat.
This commit is contained in:
parent
16414017f3
commit
b01bbbcf3d
|
@ -574,23 +574,22 @@ Cassandra cluster on localhost.")
|
||||||
(define-public python-pytz
|
(define-public python-pytz
|
||||||
(package
|
(package
|
||||||
(name "python-pytz")
|
(name "python-pytz")
|
||||||
(version "2013b")
|
(version "2015.7")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://launchpad.net/pytz/main/" version
|
(uri (pypi-uri "pytz" version))
|
||||||
"/+download/pytz-" version ".tar.bz2"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"19giwgfcrg0nr1gdv49qnmf2jb2ilkcfc7qyqvfpz4dp0p64ksv5"))))
|
"1spgdfp1ssya7v3kww7zp71xpj437skpqazcvqr3kr1p1brnw9lr"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments `(#:tests? #f)) ; no test target
|
(arguments `(#:tests? #f)) ; no test target
|
||||||
(home-page "https://launchpad.net/pytz")
|
(home-page "http://pythonhosted.org/pytz")
|
||||||
(synopsis "Python timezone library")
|
(synopsis "Python timezone library")
|
||||||
(description
|
(description
|
||||||
"This library allows accurate and cross platform timezone calculations
|
"This library allows accurate and cross platform timezone calculations
|
||||||
using Python 2.4 or higher and provides access to the Olson timezone database.")
|
using Python 2.4 or higher and provides access to the Olson timezone database.")
|
||||||
(license x11)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python2-pytz
|
(define-public python2-pytz
|
||||||
(package-with-python2 python-pytz))
|
(package-with-python2 python-pytz))
|
||||||
|
|
Loading…
Reference in New Issue