;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2020 Ryan Prior ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages visidata) #:use-module (gnu packages check) #:use-module (gnu packages time) #:use-module (gnu packages python-web) #:use-module (gnu packages python-xyz) #:use-module (gnu packages xml) #:use-module (guix build-system python) #:use-module (guix build utils) #:use-module (guix download) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages)) (define-public visidata (package (name "visidata") (version "2.4") (source (origin (method url-fetch) (uri (pypi-uri "visidata" version)) (sha256 (base32 "1g9g4gd3mqi23damxghwj76zxi2ig9vf4jv8dnvl7q7ssb7gz60d")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "pytest")) #t))))) (inputs `(("dateutil" ,python-dateutil) ("requests" ,python-requests) ("lxml" ,python-lxml) ("openpyxl" ,python-openpyxl) ("xlrd" ,python-xlrd))) (native-inputs `(("pytest" ,python-pytest))) (synopsis "Terminal spreadsheet multitool for discovering and arranging data") (description "VisiData is an interactive multitool for tabular data. It combines the clarity of a spreadsheet, the efficiency of the terminal, and the power of Python, into a lightweight utility which can handle millions of rows.") (home-page "https://www.visidata.org/") (license license:gpl3))) 84232648f7c043218be33f2d1949b0'>scheme.scm
AgeCommit message (Expand)Author
2024-09-03gnu: scm: Update to 5f4....* gnu/packages/scheme.scm (scm): Update to 5f4. Change-Id: I9b758e5ab8c5c53427549f024622649d54d06700 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Artyom V. Poptsov
2024-08-31gnu: stklos: Import the correct set of modules....* gnu/packages/scheme.scm (stklos) [arguments] <modules>: Replace %default-gnu-imported-modules with %default-gnu-modules. Change-Id: Iee99f93cfa5c7fa80694c2ad2ce6f93ccc0c44bf Maxim Cournoyer
2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer
2024-08-11gnu: chibi-scheme: Update to 0.11.0....* gnu/packages/scheme.scm (chibi-scheme): Update to 0.11.0. Change-Id: I3b6a2b722c6bc7d7817cbf0af031b153b889159f Signed-off-by: Christopher Baines <mail@cbaines.net> Ekaitz Zarraga
2024-06-24gnu: gauche: Remove trailing #t....* gnu/packages/scheme.scm (gauche) [phases]: Remove trailing #t. Change-Id: I47b4f2a7475a41e6431bba0c3d6bd21b9f584fc5 Maxim Cournoyer
2024-06-24gnu: gauche: Update to 0.9.15....* gnu/packages/scheme.scm (gauche): Update to 0.9.15. Change-Id: I63da9600fc162c3f9ab02f35c509c7402b7406ca Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Ashish SHUKLA
2024-05-31gnu: Add r7rs-small-texinfo....* gnu/packages/scheme.scm (r7rs-small-texinfo): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Change-Id: I8e3e2956cb2a5e98c1353a51773c71bbb4545b95 Yuval Langer
2024-04-15gnu: Add tr7....* gnu/packages/scheme.scm (tr7): New variable. Change-Id: I60e34f0f918ea7c9b36cea02358d69ab7bfad24b Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Artyom V. Poptsov