gnu: Add python-inform.

* gnu/packages/python-xyz.scm (python-inform): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Tanguy Le Carrour 2020-10-08 14:10:49 +02:00 committed by Ludovic Courtès
parent 1f1996e6a5
commit c9a99803dd
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -22161,3 +22161,32 @@ (define-public python-citeproc-py
bibliographies in a number of different output formats. Currently supported
are plain text, reStructuredText and HTML.")
(license license:bsd-2)))
(define-public python-inform
(package
(name "python-inform")
(version "1.23.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "inform" version))
(sha256
(base32
"0dvc5klbnbryrvspp45nmlg02g40j7xspcz7lqsm0c0dj0z29zdz"))))
(build-system python-build-system)
(arguments
`(#:tests? #f)) ; PyPI tarball lacks tests
(native-inputs
`(("python-hypothesis" ,python-hypothesis)
("python-pytest-cov" ,python-pytest-cov)
("python-pytest-runner" ,python-pytest-runner)))
(propagated-inputs
`(("python-arrow" ,python-arrow)
("python-six" ,python-six)))
(home-page "https://inform.readthedocs.io")
(synopsis "Print & logging utilities for communicating with user")
(description
"Inform is designed to display messages from programs that are typically run from
a console. It provides a collection of print functions that allow you to simply and
cleanly print different types of messages.")
(license license:gpl3+)))