mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: jtbl: Update to 1.6.0.
* gnu/packages/admin.scm (jtbl): Update to 1.6.0. [build-system]: Use pyproject. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. Change-Id: Iad5523af349299f5a19b77a5b173c05cc5639883
This commit is contained in:
parent
62a465c28d
commit
f8592210f0
1 changed files with 18 additions and 13 deletions
|
@ -5368,23 +5368,28 @@ file-types for easier parsing in scripts.")
|
||||||
(define-public jtbl
|
(define-public jtbl
|
||||||
(package
|
(package
|
||||||
(name "jtbl")
|
(name "jtbl")
|
||||||
(version "1.1.7")
|
(version "1.6.0")
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/kellyjonbrazil/jtbl")
|
(uri (git-reference
|
||||||
(commit (string-append "v" version))))
|
(url "https://github.com/kellyjonbrazil/jtbl")
|
||||||
(file-name (git-file-name name version))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"19i21fqz2m40cds9pb17brjxkczqagmx2f7mfb0xdvbygaply5wz"))))
|
(base32 "1gryjfjchvfb2nv797h5ba2qz54ig5kkjwcq8ycfdffdk1931d10"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
(inputs
|
(inputs
|
||||||
(list python-tabulate))
|
(list python-tabulate))
|
||||||
(home-page "https://github.com/kellyjonbrazil/jtbl")
|
(home-page "https://github.com/kellyjonbrazil/jtbl")
|
||||||
(synopsis "Command-line tool to print JSON data as a table in the terminal")
|
(synopsis "Command-line tool to print JSON data as a table in the terminal")
|
||||||
(description "@code{jtbl} accepts piped JSON data from stdin and outputs a
|
(description
|
||||||
text table representation to stdout.")
|
"@code{jtbl} accepts piped JSON data from stdin and outputs a text table
|
||||||
|
representation to stdout.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public hosts
|
(define-public hosts
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue