mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-tqdm: Update to 4.67.1.
* gnu/packages/python-xyz.scm (python-tqdm): Update to 4.67.1. [build-system]: Switch to pyproject-build-system. [arguments]: Use <#:test-flags> instead of <#:phases> to set tests. Ignore failing test_rlock_creation. [native-inputs]: Add python-setuptools, python-wheel. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
eddd891733
commit
cb74eaab72
1 changed files with 13 additions and 12 deletions
|
@ -26598,25 +26598,26 @@ ignoring formatting changes.")
|
||||||
(define-public python-tqdm
|
(define-public python-tqdm
|
||||||
(package
|
(package
|
||||||
(name "python-tqdm")
|
(name "python-tqdm")
|
||||||
(version "4.64.1")
|
(version "4.67.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "tqdm" version))
|
(uri (pypi-uri "tqdm" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1wi7cql2fc76b5z9v1sr96ix2gxcb974z8qfydjkmh885k2zkbpq"))))
|
||||||
"1r7i9kswpnrx4ppfvzz6discb04j1rqkqxdwa2sc2la900m6hksz"))))
|
(build-system pyproject-build-system)
|
||||||
(build-system python-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases (modify-phases %standard-phases
|
(list #:test-flags
|
||||||
(replace 'check
|
'(list "-o" "asyncio_mode=auto"
|
||||||
(lambda _
|
"-k" "not perf and not test_rlock_creation")))
|
||||||
(invoke "pytest" "-vv"
|
|
||||||
"-o" "asyncio_mode=auto"
|
|
||||||
"-k" "not perf"))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest python-pytest-asyncio python-pytest-timeout
|
(list python-pytest
|
||||||
python-setuptools-scm python-toml))
|
python-pytest-asyncio
|
||||||
|
python-pytest-timeout
|
||||||
|
python-setuptools
|
||||||
|
python-setuptools-scm
|
||||||
|
python-toml
|
||||||
|
python-wheel))
|
||||||
(home-page "https://github.com/tqdm/tqdm")
|
(home-page "https://github.com/tqdm/tqdm")
|
||||||
(synopsis "Fast, extensible progress meter")
|
(synopsis "Fast, extensible progress meter")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue