gnu: python-dnspython: Update to 2.0.0.
* gnu/packages/python-xyz.scm (python-dnspython): Update to 2.0.0. [source]: Download from pypi. [native-inputs]: Add unzip. [home-page]: Prefer https. (python-dnspython-1.16): (python2-dnspython-1.16): New variables. * gnu/packages/ebook.scm (calibre): * gnu/packages/web.scm (linkchecker): Use python2-dnspython-1.16. * gnu/packages/finance.scm (electrum): Use python-dnspython-1.16. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
bff6e01afe
commit
7a8a4fd7a7
4 changed files with 28 additions and 15 deletions
|
@ -151,7 +151,7 @@
|
||||||
("python2-css-parser" ,python2-css-parser)
|
("python2-css-parser" ,python2-css-parser)
|
||||||
("python2-dateutil" ,python2-dateutil)
|
("python2-dateutil" ,python2-dateutil)
|
||||||
("python2-dbus" ,python2-dbus)
|
("python2-dbus" ,python2-dbus)
|
||||||
("python2-dnspython" ,python2-dnspython)
|
("python2-dnspython" ,python2-dnspython-1.16)
|
||||||
("python2-dukpy" ,python2-dukpy)
|
("python2-dukpy" ,python2-dukpy)
|
||||||
("python2-feedparser" ,python2-feedparser)
|
("python2-feedparser" ,python2-feedparser)
|
||||||
("python2-html2text" ,python2-html2text)
|
("python2-html2text" ,python2-html2text)
|
||||||
|
|
|
@ -525,7 +525,7 @@ do so.")
|
||||||
("python-aiohttp-socks" ,python-aiohttp-socks)
|
("python-aiohttp-socks" ,python-aiohttp-socks)
|
||||||
("python-aiorpcx" ,python-aiorpcx)
|
("python-aiorpcx" ,python-aiorpcx)
|
||||||
("python-certifi" ,python-certifi)
|
("python-certifi" ,python-certifi)
|
||||||
("python-dnspython" ,python-dnspython)
|
("python-dnspython" ,python-dnspython-1.16)
|
||||||
("python-jsonrpclib-pelix" ,python-jsonrpclib-pelix)))
|
("python-jsonrpclib-pelix" ,python-jsonrpclib-pelix)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
`(#:tests? #f ; no tests
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
;;; Copyright © 2015, 2017 Ben Woodcroft <donttrustben@gmail.com>
|
;;; Copyright © 2015, 2017 Ben Woodcroft <donttrustben@gmail.com>
|
||||||
;;; Copyright © 2015, 2016 Erik Edrosa <erik.edrosa@gmail.com>
|
;;; Copyright © 2015, 2016 Erik Edrosa <erik.edrosa@gmail.com>
|
||||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2015, 2017 Kyle Meyer <kyle@kyleam.com>
|
;;; Copyright © 2015, 2017, 2020 Kyle Meyer <kyle@kyleam.com>
|
||||||
;;; Copyright © 2015, 2016 Chris Marusich <cmmarusich@gmail.com>
|
;;; Copyright © 2015, 2016 Chris Marusich <cmmarusich@gmail.com>
|
||||||
;;; Copyright © 2016 Danny Milosavljevic <dannym+a@scratchpost.org>
|
;;; Copyright © 2016 Danny Milosavljevic <dannym+a@scratchpost.org>
|
||||||
;;; Copyright © 2016 Lukas Gradl <lgradl@openmailbox.org>
|
;;; Copyright © 2016 Lukas Gradl <lgradl@openmailbox.org>
|
||||||
|
@ -13353,6 +13353,27 @@ until the object is actually required, and caches the result of said call.")
|
||||||
(define-public python-dnspython
|
(define-public python-dnspython
|
||||||
(package
|
(package
|
||||||
(name "python-dnspython")
|
(name "python-dnspython")
|
||||||
|
(version "2.0.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "dnspython" version ".zip"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1dyip5ygqqhrgcaiy7qzjpndl9xciip186paxqwkm726fj9z0jh4"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(native-inputs `(("unzip" ,unzip)))
|
||||||
|
(arguments '(#:tests? #f)) ; XXX: requires internet access
|
||||||
|
(home-page "https://www.dnspython.org")
|
||||||
|
(synopsis "DNS toolkit for Python")
|
||||||
|
(description
|
||||||
|
"dnspython is a DNS toolkit for Python. It supports almost all record
|
||||||
|
types. It can be used for queries, zone transfers, and dynamic updates.
|
||||||
|
It supports TSIG authenticated messages and EDNS0.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-dnspython-1.16
|
||||||
|
(package
|
||||||
|
(inherit python-dnspython)
|
||||||
(version "1.16.0")
|
(version "1.16.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -13361,18 +13382,10 @@ until the object is actually required, and caches the result of said call.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1yaw7irazy42n0kdhlk7wyg8ki34rxcnc5xbc1wfwy245b0wbxab"))))
|
"1yaw7irazy42n0kdhlk7wyg8ki34rxcnc5xbc1wfwy245b0wbxab"))))
|
||||||
(build-system python-build-system)
|
(native-inputs '())))
|
||||||
(arguments '(#:tests? #f)) ; XXX: requires internet access
|
|
||||||
(home-page "http://www.dnspython.org")
|
|
||||||
(synopsis "DNS toolkit for Python")
|
|
||||||
(description
|
|
||||||
"dnspython is a DNS toolkit for Python. It supports almost all record
|
|
||||||
types. It can be used for queries, zone transfers, and dynamic updates.
|
|
||||||
It supports TSIG authenticated messages and EDNS0.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public python2-dnspython
|
(define-public python2-dnspython-1.16
|
||||||
(package-with-python2 python-dnspython))
|
(package-with-python2 python-dnspython-1.16))
|
||||||
|
|
||||||
(define-public python-py3dns
|
(define-public python-py3dns
|
||||||
(package
|
(package
|
||||||
|
|
|
@ -6431,7 +6431,7 @@ Instagram and YouTube.")
|
||||||
"03ihjmc4bqxxqv71bb43r2f23sx0xnbq1k2fsg9fw05qa5s9x187"))))
|
"03ihjmc4bqxxqv71bb43r2f23sx0xnbq1k2fsg9fw05qa5s9x187"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("python2-dnspython" ,python2-dnspython)
|
`(("python2-dnspython" ,python2-dnspython-1.16)
|
||||||
("python2-pyxdg" ,python2-pyxdg)
|
("python2-pyxdg" ,python2-pyxdg)
|
||||||
("python2-requests" ,python2-requests)))
|
("python2-requests" ,python2-requests)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Reference in a new issue