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 3.0.2.


From: guix-commits
Subject: branch master updated: gnu: visidata: Update to 3.0.2.
Date: Wed, 10 Jul 2024 11:37:32 -0400

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

jgart pushed a commit to branch master
in repository guix.

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

commit 64ecead2a5c14700ba01ed63e244a8fd383e9e6f
Author: jgart <jgart@dismail.de>
AuthorDate: Wed Jul 10 10:29:09 2024 -0500

    gnu: visidata: Update to 3.0.2.
    
    * gnu/packages/spreadsheet.scm (visidata): Update to 3.0.2.
    [arguments]: Migrate to new style.
    [inputs]: Add python-importlib-metadata.
    
    Change-Id: I54fd775b54e42cc9f2ec66fa2159cf63e77b868c
---
 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 363d0ae16f..3ccd922747 100644
--- a/gnu/packages/spreadsheet.scm
+++ b/gnu/packages/spreadsheet.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2020, 2021 Ryan Prior <rprior@protonmail.com>
 ;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech>
-;;; Copyright © 2021, 2023 jgart <jgart@dismail.de>
+;;; Copyright © 2021, 2023-2024 jgart <jgart@dismail.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -99,24 +99,24 @@
 (define-public visidata
   (package
     (name "visidata")
-    (version "2.8")
+    (version "3.0.2")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "visidata" version))
        (sha256
         (base32
-         "1jfhrk0xvzzqfzs0khbig2dc94718qki8zys1f1a9553vjncvmi6"))))
+         "0nn0fwm0172gn5ffil310k7hmxqrrc1dn6xfz7jxsj0vikq8vhrq"))))
     (build-system python-build-system)
     (arguments
-     '(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda* (#:key tests? #:allow-other-keys)
-             (when tests? (invoke "pytest"))
-             #t)))))
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (replace 'check
+                 (lambda* (#:key tests? #:allow-other-keys)
+                   (when tests? (invoke "pytest")))))))
     (inputs
      (list python-dateutil
+           python-importlib-metadata
            python-requests
            python-lxml
            python-openpyxl



reply via email to

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