gnu: xlsx2csv: Update to 0.7.8.
* gnu/packages/xml.scm (xlsx2csv): Update to 0.7.8. [python]: Delete argument.
parent
f162273a2c
commit
709c0244e4
|
@ -27,7 +27,7 @@
|
||||||
;;; Copyright © 2020 Brett Gilio <brettg@gnu.org>
|
;;; Copyright © 2020 Brett Gilio <brettg@gnu.org>
|
||||||
;;; Copyright © 2020 Pierre Langlois <pierre.langlois@gmx.com>
|
;;; Copyright © 2020 Pierre Langlois <pierre.langlois@gmx.com>
|
||||||
;;; Copyright © 2021 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2021 Michael Rohleder <mike@rohleder.de>
|
||||||
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu>
|
||||||
;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
|
;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
|
||||||
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
|
@ -1421,7 +1421,7 @@ elements to their parents
|
||||||
(define-public xlsx2csv
|
(define-public xlsx2csv
|
||||||
(package
|
(package
|
||||||
(name "xlsx2csv")
|
(name "xlsx2csv")
|
||||||
(version "0.7.4")
|
(version "0.7.8")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1430,17 +1430,17 @@ elements to their parents
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "168dm6p7w6pvgd87yb9hcxv9y0liv6mxgril202nfva68cp8y939"))))
|
(base32 "1p10571295f8zw1lsma8k5z07hrk9aspar0lsz8zpgjl7v35zcq7"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:python ,python-2 ; use python-2 for the test script
|
`(#:phases
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "test/run"
|
(substitute* "test/run"
|
||||||
;; Run tests with `python' only.
|
;; Run tests with `python' only.
|
||||||
(("^(PYTHON_VERSIONS = ).*" all m) (string-append m "['']")))
|
(("^(PYTHON_VERSIONS = ).*" all m)
|
||||||
|
(string-append m "['']")))
|
||||||
(invoke "test/run"))))))
|
(invoke "test/run"))))))
|
||||||
(home-page "https://github.com/dilshod/xlsx2csv")
|
(home-page "https://github.com/dilshod/xlsx2csv")
|
||||||
(synopsis "XLSX to CSV converter")
|
(synopsis "XLSX to CSV converter")
|
||||||
|
|
Reference in New Issue