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:
Sharlatan Hellseher 2025-06-14 21:01:30 +01:00
parent 62a465c28d
commit f8592210f0
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -5368,23 +5368,28 @@ file-types for easier parsing in scripts.")
(define-public jtbl
(package
(name "jtbl")
(version "1.1.7")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/kellyjonbrazil/jtbl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"19i21fqz2m40cds9pb17brjxkczqagmx2f7mfb0xdvbygaply5wz"))))
(build-system python-build-system)
(version "1.6.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/kellyjonbrazil/jtbl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1gryjfjchvfb2nv797h5ba2qz54ig5kkjwcq8ycfdffdk1931d10"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pytest
python-setuptools
python-wheel))
(inputs
(list python-tabulate))
(home-page "https://github.com/kellyjonbrazil/jtbl")
(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
text table representation to stdout.")
(description
"@code{jtbl} accepts piped JSON data from stdin and outputs a text table
representation to stdout.")
(license license:expat)))
(define-public hosts