mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add python-agate-excel.
* gnu/packages/wireservice.scm (python-agate-excel): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
f1122a2c91
commit
213b05f04e
1 changed files with 23 additions and 0 deletions
|
@ -168,3 +168,26 @@ (define-public python-agate-dbf
|
||||||
(synopsis "Add read support for dbf files to agate")
|
(synopsis "Add read support for dbf files to agate")
|
||||||
(description "@code{agatedbf} uses a monkey patching pattern to add read
|
(description "@code{agatedbf} uses a monkey patching pattern to add read
|
||||||
for dbf files support to all @code{agate.Table} instances.")))
|
for dbf files support to all @code{agate.Table} instances.")))
|
||||||
|
|
||||||
|
(define-public python-agate-excel
|
||||||
|
(package
|
||||||
|
(inherit base-package)
|
||||||
|
(name "python-agate-excel")
|
||||||
|
(version "0.2.3")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/wireservice/agate-excel.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1k5lv21k19s7kgbj5srd1xgrkqvxqqs49qwj33zncs9l7851afy7"))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-agate" ,python-agate)
|
||||||
|
("python-openpyxl" ,python-openpyxl)
|
||||||
|
("python-xlrd" ,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
|
||||||
|
for xls and xlsx files support to all @code{agate.Table} instances.")))
|
||||||
|
|
Loading…
Reference in a new issue