From f8592210f03617c615cc37bd347759b9fb6f9a06 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 14 Jun 2025 21:01:30 +0100 Subject: [PATCH] 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 --- gnu/packages/admin.scm | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 54100d4fb41..b3c7cbf98f6 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -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