mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 19:49:25 -05:00
gnu: visidata: Update to 2.8.
* gnu/packages/spreadsheet.scm (visidata): Update to 2.8. [inputs, native-inputs]: Migrate inputs to new style. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
04c1dabfab
commit
fcb5b3176c
1 changed files with 9 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
;;; Copyright © 2020, 2021 Ryan Prior <rprior@protonmail.com>
|
||||||
;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech>
|
;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech>
|
||||||
;;; Copyright © 2021 Jorge Gomez <jgart@dismail.de>
|
;;; Copyright © 2021 Jorge Gomez <jgart@dismail.de>
|
||||||
;;;
|
;;;
|
||||||
|
@ -86,14 +86,14 @@ (define-public sc-im
|
||||||
(define-public visidata
|
(define-public visidata
|
||||||
(package
|
(package
|
||||||
(name "visidata")
|
(name "visidata")
|
||||||
(version "2.5")
|
(version "2.8")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "visidata" version))
|
(uri (pypi-uri "visidata" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"19fbjr9j91pcazcz0bqx3qrasmr8xdsb13haf5lfbpyxj23f7f1j"))))
|
"1jfhrk0xvzzqfzs0khbig2dc94718qki8zys1f1a9553vjncvmi6"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
|
@ -103,13 +103,13 @@ (define-public visidata
|
||||||
(when tests? (invoke "pytest"))
|
(when tests? (invoke "pytest"))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("dateutil" ,python-dateutil)
|
(list python-dateutil
|
||||||
("requests" ,python-requests)
|
python-requests
|
||||||
("lxml" ,python-lxml)
|
python-lxml
|
||||||
("openpyxl" ,python-openpyxl)
|
python-openpyxl
|
||||||
("xlrd" ,python-xlrd)))
|
python-xlrd))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pytest" ,python-pytest)))
|
(list python-pytest))
|
||||||
(synopsis "Terminal spreadsheet multitool for discovering and arranging data")
|
(synopsis "Terminal spreadsheet multitool for discovering and arranging data")
|
||||||
(description
|
(description
|
||||||
"VisiData is an interactive multitool for tabular data. It combines the
|
"VisiData is an interactive multitool for tabular data. It combines the
|
||||||
|
|
Loading…
Reference in a new issue