rekado pushed a commit to branch master
in repository guix.

commit cb4369a742d5edd658f2c4dd6d92f632637027be
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jan 14 09:29:39 2025 +0000

    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 73710a7c68..4bc5e712a7 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 <https://github.com/pradyunsg/furo> 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

Reply via email to