diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2022-01-19 14:08:15 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-01-19 14:10:36 +0100 |
commit | b029e5fefcc81d33165db2294cad2eb931cddfa7 (patch) | |
tree | f967302dd7d82040441a21b82aed492353f2fc25 /gnu/packages/wireservice.scm | |
parent | b30caf19e6238615cc271edccdae8391a86da661 (diff) | |
download | guix-b029e5fefcc81d33165db2294cad2eb931cddfa7.tar.gz |
gnu: python-agate-excel: Update to 0.2.5.
* gnu/packages/wireservice.scm (python-agate-excel): Update to 0.2.5. [inputs]: Add python-olefile and remove labels.
Diffstat (limited to 'gnu/packages/wireservice.scm')
-rw-r--r-- | gnu/packages/wireservice.scm | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/packages/wireservice.scm b/gnu/packages/wireservice.scm index f0dcce717c..d315bc2d74 100644 --- a/gnu/packages/wireservice.scm +++ b/gnu/packages/wireservice.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com> ;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org> +;;; Copyright © 2022 Guillaume Le Vaillant <glv@posteo.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -174,7 +175,7 @@ for dbf files support to all @code{agate.Table} instances."))) (define-public python-agate-excel (wireservice-package (name "python-agate-excel") - (version "0.2.3") + (version "0.2.5") (source (origin (method git-fetch) (uri (git-reference @@ -183,15 +184,16 @@ for dbf files support to all @code{agate.Table} instances."))) (file-name (git-file-name name version)) (sha256 (base32 - "1k5lv21k19s7kgbj5srd1xgrkqvxqqs49qwj33zncs9l7851afy7")))) + "1y3cw57000inwczx50n16kxkr3xi2l241iml1qcqp29a0ba5c519")))) (native-inputs - `(("python-nose" ,python-nose) - ("python-sphinx" ,python-sphinx) - ("python-sphinx-rtd-theme" ,python-sphinx-rtd-theme))) + (list python-nose + python-sphinx + python-sphinx-rtd-theme)) (propagated-inputs - `(("python-agate" ,python-agate) - ("python-openpyxl" ,python-openpyxl) - ("python-xlrd" ,python-xlrd))) + (list python-agate + python-olefile + python-openpyxl + python-xlrd)) (home-page "https://agate-excel.rtfd.org") (synopsis "Add read support for Excel files (xls and xlsx) to agate") (description "@code{agateexcel} uses a monkey patching pattern to add read |