diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-12-20 17:58:19 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-27 22:02:48 +0000 |
| commit | 085593c5ef32b0b2449455c6651952ed78d85e18 (patch) | |
| tree | 0b4fe421d486fbab4c5185252b3cdd7d9b365de0 /gnu/packages/xml.scm | |
| parent | 9aed8e406a9ac40da78192cf5c9039aab9b3f212 (diff) | |
gnu: xlsx2csv: Update to 0.8.3.
* gnu/packages/xml.scm (xlsx2csv): Update to 0.8.3.
[arguments]: Improve style.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.
Change-Id: I8b4bd7e00b1fd6de08d9961ddc2f0a1c12c363b9
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/xml.scm')
| -rw-r--r-- | gnu/packages/xml.scm | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 266b2ff8513..cdbee7a1166 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm | |||
| @@ -1476,7 +1476,7 @@ elements to their parents | |||
| 1476 | (define-public xlsx2csv | 1476 | (define-public xlsx2csv |
| 1477 | (package | 1477 | (package |
| 1478 | (name "xlsx2csv") | 1478 | (name "xlsx2csv") |
| 1479 | (version "0.7.8") | 1479 | (version "0.8.3") |
| 1480 | (source | 1480 | (source |
| 1481 | (origin | 1481 | (origin |
| 1482 | (method git-fetch) | 1482 | (method git-fetch) |
| @@ -1485,19 +1485,21 @@ elements to their parents | |||
| 1485 | (commit version))) | 1485 | (commit version))) |
| 1486 | (file-name (git-file-name name version)) | 1486 | (file-name (git-file-name name version)) |
| 1487 | (sha256 | 1487 | (sha256 |
| 1488 | (base32 "1p10571295f8zw1lsma8k5z07hrk9aspar0lsz8zpgjl7v35zcq7")))) | 1488 | (base32 "0cg2zf6dqnxdcsw0bpjz49sa7360iz9bvc9j7c50qhp9ms81vfs8")))) |
| 1489 | (build-system python-build-system) | 1489 | (build-system pyproject-build-system) |
| 1490 | (arguments | 1490 | (arguments |
| 1491 | `(#:phases | 1491 | (list |
| 1492 | (modify-phases %standard-phases | 1492 | #:phases |
| 1493 | (replace 'check | 1493 | #~(modify-phases %standard-phases |
| 1494 | (lambda* (#:key tests? #:allow-other-keys) | 1494 | (replace 'check |
| 1495 | (substitute* "test/run" | 1495 | (lambda* (#:key tests? #:allow-other-keys) |
| 1496 | ;; Run tests with `python' only. | 1496 | (substitute* "test/run" |
| 1497 | (("^(PYTHON_VERSIONS = ).*" all m) | 1497 | ;; Run tests with `python' only. |
| 1498 | (string-append m "['']"))) | 1498 | (("^(PYTHON_VERSIONS = ).*" all m) |
| 1499 | (when tests? | 1499 | (string-append m "['']"))) |
| 1500 | (invoke "test/run"))))))) | 1500 | (when tests? |
| 1501 | (invoke "test/run"))))))) | ||
| 1502 | (native-inputs (list python-setuptools)) | ||
| 1501 | (home-page "https://github.com/dilshod/xlsx2csv") | 1503 | (home-page "https://github.com/dilshod/xlsx2csv") |
| 1502 | (synopsis "XLSX to CSV converter") | 1504 | (synopsis "XLSX to CSV converter") |
| 1503 | (description | 1505 | (description |
