guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: visidata: Update to 2.8.


From: guix-commits
Subject: branch master updated: gnu: visidata: Update to 2.8.
Date: Sat, 18 Dec 2021 15:12:20 -0500

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new fcb5b31  gnu: visidata: Update to 2.8.
fcb5b31 is described below

commit fcb5b3176c7e752f3ed7816588973a47abcdc304
Author: Ryan Prior <rprior@protonmail.com>
AuthorDate: Fri Dec 17 23:16:26 2021 +0000

    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>
---
 gnu/packages/spreadsheet.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/spreadsheet.scm b/gnu/packages/spreadsheet.scm
index b81c67d..0016f38 100644
--- a/gnu/packages/spreadsheet.scm
+++ b/gnu/packages/spreadsheet.scm
@@ -1,5 +1,5 @@
 ;;; 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 © 2021 Jorge Gomez <jgart@dismail.de>
 ;;;
@@ -86,14 +86,14 @@
 (define-public visidata
   (package
     (name "visidata")
-    (version "2.5")
+    (version "2.8")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "visidata" version))
        (sha256
         (base32
-         "19fbjr9j91pcazcz0bqx3qrasmr8xdsb13haf5lfbpyxj23f7f1j"))))
+         "1jfhrk0xvzzqfzs0khbig2dc94718qki8zys1f1a9553vjncvmi6"))))
     (build-system python-build-system)
     (arguments
      '(#:phases
@@ -103,13 +103,13 @@
              (when tests? (invoke "pytest"))
              #t)))))
     (inputs
-     `(("dateutil" ,python-dateutil)
-       ("requests" ,python-requests)
-       ("lxml" ,python-lxml)
-       ("openpyxl" ,python-openpyxl)
-       ("xlrd" ,python-xlrd)))
+     (list python-dateutil
+           python-requests
+           python-lxml
+           python-openpyxl
+           python-xlrd))
     (native-inputs
-     `(("pytest" ,python-pytest)))
+     (list python-pytest))
     (synopsis "Terminal spreadsheet multitool for discovering and arranging 
data")
     (description
      "VisiData is an interactive multitool for tabular data.  It combines the



reply via email to

[Prev in Thread] Current Thread [Next in Thread]