diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-09 16:45:54 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:58 +0100 |
| commit | c34260c16e5176aa6cfd55e1b05a40e57458962a (patch) | |
| tree | ace6098bdbb250b326b1e6e2926fc4d3e096a84f /gnu/packages/python-xyz.scm | |
| parent | d2972d8b0d5b8cf3a5ab5c7a323b1a6f8caddd01 (diff) | |
gnu: python-xlrd: Update to 2.0.2.
* gnu/packages/python-xyz.scm (python-xlrd): Update to 2.0.2.
[build-system]: Use pyproject.
[native-inputs]: Add python-setuptools.
Change-Id: I7622d787dd9f6c516952a5680e1028707406817a
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b9117304f7..ac80b6ccd1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17648,20 +17648,20 @@ native modules.") (define-public python-xlrd (package (name "python-xlrd") - (version "2.0.1") - (source (origin - ;; The tests are not included in the PyPI archive. - (method git-fetch) - (uri (git-reference - (url "https://github.com/python-excel/xlrd") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "170asszffvf6rh5w169ic4h5kxgjkmdl3060vw737d4g1qfifvzz")))) - (build-system python-build-system) + (version "2.0.2") + (source + (origin + (method git-fetch) ;no tests in PyPI archive + (uri (git-reference + (url "https://github.com/python-excel/xlrd") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zgb03a4l2an2hy17w0nlyfisl53jzf8csdj90f5xkibbnjsg3y3")))) + (build-system pyproject-build-system) (native-inputs - (list python-pytest)) + (list python-pytest + python-setuptools)) (home-page "https://www.python-excel.org/") (synopsis "Library for extracting data from Excel files") (description "This package provides a library to extract data from |
