gnu: python-mando: Fix indentation.

* gnu/packages/python.scm (python-mando): Indent with emacs.
This commit is contained in:
Marius Bakke 2018-02-07 14:59:43 +01:00
parent 2aa33bf41b
commit 50c84dd5a6
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 21 additions and 22 deletions

View File

@ -10826,28 +10826,27 @@ in other versions.")
(define-public python-mando (define-public python-mando
(package (package
(name "python-mando") (name "python-mando")
(version "0.6.4") (version "0.6.4")
(source (source (origin
(origin (method url-fetch)
(method url-fetch) (uri (pypi-uri "mando" version))
(uri (pypi-uri "mando" version)) (sha256
(sha256 (base32
(base32 "0q6rl085q1hw1wic52pqfndr0x3nirbxnhqj9akdm5zhq2fv3zkr"))))
"0q6rl085q1hw1wic52pqfndr0x3nirbxnhqj9akdm5zhq2fv3zkr")))) (build-system python-build-system)
(build-system python-build-system) (propagated-inputs
(propagated-inputs `(("python-rst2ansi" ,python-rst2ansi)
`(("python-rst2ansi" ,python-rst2ansi) ("python-six" ,python-six)))
("python-six" ,python-six))) (native-inputs
(native-inputs `(("python-pytest" ,python-pytest)))
`(("python-pytest" ,python-pytest))) (home-page "https://mando.readthedocs.org/")
(home-page "https://mando.readthedocs.org/") (synopsis
(synopsis "Wrapper around argparse, allowing creation of complete CLI applications")
"Wrapper around argparse, allowing creation of complete CLI applications") (description
(description "This package is a wrapper around argparse, allowing you to write complete CLI
"This package is a wrapper around argparse, allowing you to write complete CLI applications in seconds while maintaining all the flexibility.")
applications in seconds while maintaining all the flexibility.") (license license:expat)))
(license license:expat)))
(define-public python2-mando (define-public python2-mando
(package-with-python2 python-mando)) (package-with-python2 python-mando))