From cb4369a742d5edd658f2c4dd6d92f632637027be Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 14 Jan 2025 09:29:39 +0000 Subject: [PATCH] gnu: python-agate-excel: Update to 0.4.1. * gnu/packages/wireservice.scm (python-agate-excel): Update to 0.4.1. [build-system]: Swap to pyproject-build-system. [arguments]: Use default 'check, remove 'install-docs. [propagated-inputs]: Add python-agate, python-olefile, python-openpyxl, and python-xlrd. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. Change-Id: Ia110e2a62fa43f87af7a151bc84b332b38a9c7c1 --- gnu/packages/wireservice.scm | 55 ++++++++++++++++++++---------------- 1 file changed, 30 insertions(+), 25 deletions(-) diff --git a/gnu/packages/wireservice.scm b/gnu/packages/wireservice.scm index 73710a7c682b85522bdb987ee91977cb97b13067..4bc5e712a70a14c075aefa63f88f685a77d9440e 100644 --- a/gnu/packages/wireservice.scm +++ b/gnu/packages/wireservice.scm @@ -205,31 +205,36 @@ support to all @code{agate.Table} instances.") (license license:expat))) (define-public python-agate-excel - (wireservice-package - (name "python-agate-excel") - (version "0.2.5") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/wireservice/agate-excel") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1y3cw57000inwczx50n16kxkr3xi2l241iml1qcqp29a0ba5c519")))) - (native-inputs - (list python-nose - python-sphinx - python-sphinx-rtd-theme)) - (propagated-inputs - (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 -for xls and xlsx files support to all @code{agate.Table} instances."))) + (package + (name "python-agate-excel") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wireservice/agate-excel") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mg5ldnyc72yllwl8x2gpb142l43wss5f4sgp610db1v2w12rzhj")))) + (build-system pyproject-build-system) + ;; XXX: Documentation requires which + ;; is not packaged yet and depends on some missing Node.js packages + (native-inputs + (list python-pytest + python-setuptools + python-wheel)) + (propagated-inputs + (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 for xls and +xlsx files support to all @code{agate.Table} instances.") + (license license:expat))) (define-public csvkit (package