gnu: python-pytzdata: Update to 2019.3.
* gnu/packages/time.scm (python-pytzdata): Update to 2019.3. [native-inputs]: Remove. [arguments]: New field. [propagated-inputs]: Add PYTHON-CLEO.master
parent
0266a6a23b
commit
463e98357b
|
@ -8,7 +8,7 @@
|
||||||
;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com>
|
;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com>
|
||||||
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
;;; Copyright © 2016 Danny Milosavljevic <dannym+a@scratchpost.org>
|
;;; Copyright © 2016 Danny Milosavljevic <dannym+a@scratchpost.org>
|
||||||
;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2016, 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2017 Ben Woodcroft <donttrustben@gmail.com>
|
;;; Copyright © 2017 Ben Woodcroft <donttrustben@gmail.com>
|
||||||
;;; Copyright © 2017 ng0 <ng0@n0.is>
|
;;; Copyright © 2017 ng0 <ng0@n0.is>
|
||||||
|
@ -89,18 +89,20 @@ expressions.")
|
||||||
(define-public python-pytzdata
|
(define-public python-pytzdata
|
||||||
(package
|
(package
|
||||||
(name "python-pytzdata")
|
(name "python-pytzdata")
|
||||||
(version "2017.3.1")
|
(version "2019.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "pytzdata" version))
|
(uri (pypi-uri "pytzdata" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1wi3jh39zsa9iiyyhynhj7w5b2p9wdyd0ppavpsrmf3wxvr7cwz8"))))
|
"0ppfc6kz4p41mxyqxq1g1zp6gvns99g6b344qj6ih0x9vxy6zh7s"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
;; XXX: The PyPI distribution contains no tests, and the upstream
|
||||||
`(("python-pytest" ,python-pytest)
|
;; repository lacks a setup.py! How to build from git?
|
||||||
("python-nose" ,python-nose)))
|
(arguments '(#:tests? #f))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-cleo" ,python-cleo)))
|
||||||
(home-page "https://github.com/sdispater/pytzdata")
|
(home-page "https://github.com/sdispater/pytzdata")
|
||||||
(synopsis "Timezone database for Python")
|
(synopsis "Timezone database for Python")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue