diff options
| author | Ryan Prior <rprior@protonmail.com> | 2020-10-19 04:29:31 +0000 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2020-10-21 19:19:34 +0200 |
| commit | 0e2f871c65a7a923b56f4fb609b66b4d8c767b21 (patch) | |
| tree | 72a54bc53adf2bc23920203f5d834513d029e0c3 /gnu | |
| parent | 720fce6daef2763ded98817a0e31653d22e88e8b (diff) | |
gnu: visidata: Update to 2.0.1.
* gnu/packages/visidata.scm (visidata): Update to 2.0.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/visidata.scm | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/gnu/packages/visidata.scm b/gnu/packages/visidata.scm index 68ea401362b..6ba2939b4fc 100644 --- a/gnu/packages/visidata.scm +++ b/gnu/packages/visidata.scm | |||
| @@ -17,13 +17,13 @@ | |||
| 17 | ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. | 17 | ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. |
| 18 | 18 | ||
| 19 | (define-module (gnu packages visidata) | 19 | (define-module (gnu packages visidata) |
| 20 | #:use-module (gnu packages databases) | 20 | #:use-module (gnu packages check) |
| 21 | #:use-module (gnu packages python-science) | 21 | #:use-module (gnu packages time) |
| 22 | #:use-module (gnu packages python-web) | 22 | #:use-module (gnu packages python-web) |
| 23 | #:use-module (gnu packages python-xyz) | 23 | #:use-module (gnu packages python-xyz) |
| 24 | #:use-module (gnu packages time) | ||
| 25 | #:use-module (gnu packages xml) | 24 | #:use-module (gnu packages xml) |
| 26 | #:use-module (guix build-system python) | 25 | #:use-module (guix build-system python) |
| 26 | #:use-module (guix build utils) | ||
| 27 | #:use-module (guix download) | 27 | #:use-module (guix download) |
| 28 | #:use-module ((guix licenses) #:prefix license:) | 28 | #:use-module ((guix licenses) #:prefix license:) |
| 29 | #:use-module (guix packages)) | 29 | #:use-module (guix packages)) |
| @@ -31,34 +31,34 @@ | |||
| 31 | (define-public visidata | 31 | (define-public visidata |
| 32 | (package | 32 | (package |
| 33 | (name "visidata") | 33 | (name "visidata") |
| 34 | (version "1.5.2") | 34 | (version "2.0.1") |
| 35 | (source | 35 | (source |
| 36 | (origin | 36 | (origin |
| 37 | (method url-fetch) | 37 | (method url-fetch) |
| 38 | (uri (pypi-uri "visidata" version)) | 38 | (uri (pypi-uri "visidata" version)) |
| 39 | (sha256 | 39 | (sha256 |
| 40 | (base32 | 40 | (base32 |
| 41 | "10adfyn4gkisvciqawgh2lakkhhnjjxiyp7mzbgcwkq1b3sigpf1")))) | 41 | "1p4x9fz59ablyjvp18y50zdsapavhzx7w5hk2v8rsar5ill8947v")))) |
| 42 | (build-system python-build-system) | 42 | (build-system python-build-system) |
| 43 | ;; Tests disabled because they are not packaged with the source tarball. | 43 | (arguments |
| 44 | ;; Upstream suggests tests will be packaged with tarball around 2.0 release. | 44 | '(#:phases |
| 45 | (arguments '(#:tests? #f)) | 45 | (modify-phases %standard-phases |
| 46 | (replace 'check | ||
| 47 | (lambda* (#:key tests? #:allow-other-keys) | ||
| 48 | (when tests? (invoke "pytest")) | ||
| 49 | #t))))) | ||
| 46 | (inputs | 50 | (inputs |
| 47 | `(("python-dateutil" ,python-dateutil) | 51 | `(("dateutil" ,python-dateutil) |
| 48 | ("python-fonttools" ,python-fonttools) | 52 | ("requests" ,python-requests) |
| 49 | ("python-h5py" ,python-h5py) | 53 | ("lxml" ,python-lxml) |
| 50 | ("python-lxml" ,python-lxml) | 54 | ("openpyxl" ,python-openpyxl) |
| 51 | ("python-openpyxl" ,python-openpyxl) | 55 | ("xlrd" ,python-xlrd))) |
| 52 | ("python-pandas" ,python-pandas) | 56 | (native-inputs |
| 53 | ("python-psycopg2" ,python-psycopg2) | 57 | `(("pytest" ,python-pytest))) |
| 54 | ("python-pyyaml" ,python-pyyaml) | ||
| 55 | ("python-requests" ,python-requests) | ||
| 56 | ("python-xlrd" ,python-xlrd))) | ||
| 57 | (synopsis "Terminal spreadsheet multitool for discovering and arranging data") | 58 | (synopsis "Terminal spreadsheet multitool for discovering and arranging data") |
| 58 | (description | 59 | (description |
| 59 | "VisiData is an interactive multitool for tabular data. It combines the | 60 | "VisiData is an interactive multitool for tabular data. It combines the |
| 60 | clarity of a spreadsheet, the efficiency of the terminal, and the power of | 61 | clarity of a spreadsheet, the efficiency of the terminal, and the power of |
| 61 | Python, into a lightweight utility which can handle millions of rows.") | 62 | Python, into a lightweight utility which can handle millions of rows.") |
| 62 | (home-page "https://www.visidata.org/") | 63 | (home-page "https://www.visidata.org/") |
| 63 | (license (list license:gpl3 | 64 | (license license:gpl3))) |
| 64 | license:expat)))) ;; visidata/vdtui.py | ||
