gnu: xlsx2csv: Update to 0.7.4.
* gnu/packages/xml.scm (xlsx2csv): Update to 0.7.4.
This commit is contained in:
parent
99631313e2
commit
3255fc3bfe
|
@ -1203,25 +1203,25 @@ elements to their parents
|
||||||
(define-public xlsx2csv
|
(define-public xlsx2csv
|
||||||
(package
|
(package
|
||||||
(name "xlsx2csv")
|
(name "xlsx2csv")
|
||||||
(version "0.7.2")
|
(version "0.7.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"https://github.com/dilshod/"
|
"https://github.com/dilshod/"
|
||||||
name "/archive/release/" version ".tar.gz"))
|
name "/archive/" version ".tar.gz"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1gpn6kaa7l1ai8c9zx2j3acf04bvxq79pni8jjfjrk01smjbyyql"))))
|
"029yp4nlgz079drqxg3kxda98a2lqwgbg8x5q6kfwjm90gnffzda"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:python ,python-2 ; Use python-2 for the test script.
|
`(#: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")
|
||||||
|
|
Loading…
Reference in New Issue