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.
parent
b30caf19e6
commit
b029e5fefc
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
|
;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
|
||||||
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
||||||
|
;;; Copyright © 2022 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; 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
|
(define-public python-agate-excel
|
||||||
(wireservice-package
|
(wireservice-package
|
||||||
(name "python-agate-excel")
|
(name "python-agate-excel")
|
||||||
(version "0.2.3")
|
(version "0.2.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -183,15 +184,16 @@ for dbf files support to all @code{agate.Table} instances.")))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1k5lv21k19s7kgbj5srd1xgrkqvxqqs49qwj33zncs9l7851afy7"))))
|
"1y3cw57000inwczx50n16kxkr3xi2l241iml1qcqp29a0ba5c519"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-nose" ,python-nose)
|
(list python-nose
|
||||||
("python-sphinx" ,python-sphinx)
|
python-sphinx
|
||||||
("python-sphinx-rtd-theme" ,python-sphinx-rtd-theme)))
|
python-sphinx-rtd-theme))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-agate" ,python-agate)
|
(list python-agate
|
||||||
("python-openpyxl" ,python-openpyxl)
|
python-olefile
|
||||||
("python-xlrd" ,python-xlrd)))
|
python-openpyxl
|
||||||
|
python-xlrd))
|
||||||
(home-page "https://agate-excel.rtfd.org")
|
(home-page "https://agate-excel.rtfd.org")
|
||||||
(synopsis "Add read support for Excel files (xls and xlsx) to agate")
|
(synopsis "Add read support for Excel files (xls and xlsx) to agate")
|
||||||
(description "@code{agateexcel} uses a monkey patching pattern to add read
|
(description "@code{agateexcel} uses a monkey patching pattern to add read
|
||||||
|
|
Reference in New Issue