;;; 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 databases) #:use-module (gnu packages python-science) #:use-module (gnu packages python-web) #:use-module (gnu packages python-xyz) #:use-module (gnu packages time) #:use-module (gnu packages xml) #:use-module (guix build-system python) #:use-module (guix download) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages)) (define-public visidata (package (name "visidata") (version "1.5.2") (source (origin (method url-fetch) (uri (pypi-uri "visidata" version)) (sha256 (base32 "10adfyn4gkisvciqawgh2lakkhhnjjxiyp7mzbgcwkq1b3sigpf1")))) (build-system python-build-system) ;; Tests disabled because they are not packaged with the source tarball. ;; Upstream suggests tests will be packaged with tarball around 2.0 release. (arguments '(#:tests? #f)) (inputs `(("python-dateutil" ,python-dateutil) ("python-fonttools" ,python-fonttools) ("python-h5py" ,python-h5py) ("python-lxml" ,python-lxml) ("python-openpyxl" ,python-openpyxl) ("python-pandas" ,python-pandas) ("python-psycopg2" ,python-psycopg2) ("python-pyyaml" ,python-pyyaml) ("python-requests" ,python-requests) ("python-xlrd" ,python-xlrd))) (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 (list license:gpl3 license:expat)))) ;; visidata/vdtui.py f='/guix/commit/gnu/bootloader?id=9530ee9f9c89cbbf35589727e9fdb373ed7f47fa'>gnu: Add u-boot-ts7970-q-2g-1000mhz-c-bootloader....Maxim Cournoyer 2022-12-28gnu: u-boot-am335x-boneblack: Revert to old name....Maxim Cournoyer 2022-12-20gnu: u-boot-am335x-evm-boneblack: Fix variable name....Maxim Cournoyer 2022-12-07bootloaders: grub: Fix comment....Maxim Cournoyer 2022-12-01gnu: bootloader: Rework chaining, add grub-efi-netboot-removable-bootloader....Stefan 2022-09-08gnu: bootloader: grub: Add support for chain-loader....tiantian 2022-08-30bootloader: Add device-tree-support? option....Reza Alizadeh Majd 2022-06-24image: Add support for 32bit UEFI....Denis 'GNUtoo' Carikli 2022-06-06bootloader: grub: Add removable grub-efi bootloader option....Karl Hallsby 2022-01-13bootloader: grub: Fix serial mode....Mathieu Othacehe 2021-12-01gnu: system: Add LUKS2 support for the root file system....Josselin Poiret 2021-08-29Migrate to the new 'targets' field of bootloader-configuration....Maxim Cournoyer 2021-05-29gnu: bootloader: Fix install-allwinner64-u-boot....Vagrant Cascadian 2021-04-10bootloader: grub: Fix typo in docstring....Tobias Geerinckx-Rice 2021-02-08gnu: bootloader: Update install-allwinner64-u-boot....Vagrant Cascadian 2021-02-08gnu: u-boot-puma-rk3399: Switch to using arm-trusted-firmware-rk3399....Vagrant Cascadian 2021-01-17gnu: grub: Use installed unicode font....Stefan