diff options
author | Marius Bakke <marius@gnu.org> | 2021-05-22 14:38:31 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-05-22 16:04:59 +0200 |
commit | 10c8aa039da5a7bad43581a610cf616f96335d6a (patch) | |
tree | 83bc320312f3176a4035a77092fcbbddb0f7e1a0 /gnu | |
parent | 0d0e3bee031d84712ac76c141a8bfdc8e7179868 (diff) | |
download | guix-10c8aa039da5a7bad43581a610cf616f96335d6a.tar.gz |
gnu: python2-ttystatus: Add Python 3 variant.
* gnu/packages/python-xyz.scm (python2-ttystatus): Rename to ... (python-ttystatus): ... this. [name, native-inputs, arguments]: Adjust accordingly. [descriptions]: Remove mentions of Python version and add markup. (python2-ttystatus): Use PACKAGE-WITH-PYTHON2.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b42b4a6b4c..bd716f3dac 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16892,9 +16892,9 @@ as parsing the command line for options, and iterating over input files.") (define-public python2-cliapp (package-with-python2 python-cliapp)) -(define-public python2-ttystatus +(define-public python-ttystatus (package - (name "python2-ttystatus") + (name "python-ttystatus") (version "0.38") (source (origin @@ -16908,11 +16908,10 @@ as parsing the command line for options, and iterating over input files.") (file-name (git-file-name name version)))) (build-system python-build-system) (native-inputs - `(("python2-coverage-test-runner" ,python2-coverage-test-runner) - ("python2-pep8" ,python2-pep8))) + `(("python-coverage-test-runner" ,python-coverage-test-runner) + ("python-pep8" ,python-pep8))) (arguments - `(#:python ,python-2 - #:phases + `(#:phases (modify-phases %standard-phases ;; check phase needs to be run before the build phase. If not, ;; coverage-test-runner looks for tests for the built source files, @@ -16923,13 +16922,15 @@ as parsing the command line for options, and iterating over input files.") (home-page "https://liw.fi/ttystatus/") (synopsis "Python library for showing progress reporting and status updates on terminals") - (description "@code{python2-ttystatus} is a python library for -showing progress reporting and status updates on terminals, for -command line programs. Output is automatically adapted to the width -of the terminal: truncated if it does not fit, and resized if the -terminal size changes.") + (description "@code{ttystatus} is a Python library for showing progress +reporting and status updates on terminals, for command line programs. +Output is automatically adapted to the width of the terminal: truncated +if it does not fit, and resized if the terminal size changes.") (license license:gpl3+))) +(define-public python2-ttystatus + (package-with-python2 python-ttystatus)) + (define-public python2-tracing (package (name "python2-tracing") |