diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-14 09:26:53 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:52 +0100 |
commit | 92c102b8197488a8f1bfbb89864abd0e1089077c (patch) | |
tree | 22292d21c96d1ae60e59818a1e0ee2663833ffdb | |
parent | fb7bc00bf4121ea800b38f9560662e87718008c6 (diff) |
gnu: python-agate-dbf: Update to 0.2.3.
* gnu/packages/wireservice.scm (python-agate-dbf): Update to 0.2.3.
[build-system]: Swap to pyproject-build-system.
[arguments]: Use default 'check, remove 'install-docs.
[propagated-inputs]: Add python-agate and python-dbfread.
[native-inputs]: Add python-pytest, python-setuptools, and python-wheel.
Change-Id: I3d7bfdcd4c1fca168ff19ac029ae63cd811846ea
-rw-r--r-- | gnu/packages/wireservice.scm | 51 |
1 files changed, 28 insertions, 23 deletions
diff --git a/gnu/packages/wireservice.scm b/gnu/packages/wireservice.scm index 0c04e215db..73710a7c68 100644 --- a/gnu/packages/wireservice.scm +++ b/gnu/packages/wireservice.scm @@ -175,29 +175,34 @@ previously known as journalism.") (license license:expat))) (define-public python-agate-dbf - (wireservice-package - (name "python-agate-dbf") - (version "0.2.2") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/wireservice/agate-dbf") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "03l3qlyw7588jhjjsiy15valqlzs8gjai8f74v18zv2za0zjqbzl")))) - (native-inputs - (list python-nose - python-sphinx - python-sphinx-rtd-theme)) - (propagated-inputs - (list python-agate - python-dbfread)) - (home-page "https://agate-dbf.rtfd.org") - (synopsis "Add read support for dbf files to agate") - (description "@code{agatedbf} uses a monkey patching pattern to add read -for dbf files support to all @code{agate.Table} instances."))) + (package + (name "python-agate-dbf") + (version "0.2.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wireservice/agate-dbf") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0z9zmc05sjxw02xl9ygjsdyp32nb3m2qrig0pmvhvf5hj1faigxi")))) + (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-dbfread)) + (home-page "https://agate-dbf.rtfd.org") + (synopsis "Add read support for dbf files to agate") + (description + "@code{agatedbf} uses a monkey patching pattern to add read for dbf files +support to all @code{agate.Table} instances.") + (license license:expat))) (define-public python-agate-excel (wireservice-package |