gnu: python-dnspython: Fix indentation.
* gnu/packages/python-xyz.scm (python-dnspython): Fix indentation. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
f06f569aa2
commit
bff6e01afe
1 changed files with 16 additions and 16 deletions
|
@ -13352,24 +13352,24 @@ 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 "1.16.0")
|
(version "1.16.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://www.dnspython.org/kits/"
|
(uri (string-append "http://www.dnspython.org/kits/"
|
||||||
version "/dnspython-" version ".tar.gz"))
|
version "/dnspython-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1yaw7irazy42n0kdhlk7wyg8ki34rxcnc5xbc1wfwy245b0wbxab"))))
|
"1yaw7irazy42n0kdhlk7wyg8ki34rxcnc5xbc1wfwy245b0wbxab"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments '(#:tests? #f)) ; XXX: requires internet access
|
(arguments '(#:tests? #f)) ; XXX: requires internet access
|
||||||
(home-page "http://www.dnspython.org")
|
(home-page "http://www.dnspython.org")
|
||||||
(synopsis "DNS toolkit for Python")
|
(synopsis "DNS toolkit for Python")
|
||||||
(description
|
(description
|
||||||
"dnspython is a DNS toolkit for Python. It supports almost all record
|
"dnspython is a DNS toolkit for Python. It supports almost all record
|
||||||
types. It can be used for queries, zone transfers, and dynamic updates.
|
types. It can be used for queries, zone transfers, and dynamic updates.
|
||||||
It supports TSIG authenticated messages and EDNS0.")
|
It supports TSIG authenticated messages and EDNS0.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python2-dnspython
|
(define-public python2-dnspython
|
||||||
(package-with-python2 python-dnspython))
|
(package-with-python2 python-dnspython))
|
||||||
|
|
Reference in a new issue