gnu: python-httpx: Update to 0.22.0.
* gnu/packages/python-web.scm (python-httpx): Update to 0.22.0. [phases]{check}: Add 'asyncio_mode=auto' pytest-asyncio option. Skip the 'test_main' test. [native-inputs]: Delete python-autoflake, python-black, python-cryptography, python-flake8, python-flake8-bugbear, python-flake8-pie, python-isort, python-mypy and python-pytest-cov. [propagated-inputs]: Add python-charset-normalizer.
This commit is contained in:
parent
ef370c8501
commit
b4c4c2f82e
@ -5319,7 +5319,7 @@ Some things HTTP Core does do:
|
|||||||
(define-public python-httpx
|
(define-public python-httpx
|
||||||
(package
|
(package
|
||||||
(name "python-httpx")
|
(name "python-httpx")
|
||||||
(version "0.16.1")
|
(version "0.22.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
;; PyPI tarball does not contain tests.
|
;; PyPI tarball does not contain tests.
|
||||||
@ -5329,7 +5329,7 @@ Some things HTTP Core does do:
|
|||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "00gmq45fckcqkj910bvd7pyqz1mvgsdvz4s0k7dzbnc5czzq1f4a"))))
|
(base32 "1awr56488b66zyl3cx1f03lq2n07xdg5kb4l46vnsm59s6hr02c5"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
@ -5337,7 +5337,8 @@ Some things HTTP Core does do:
|
|||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(invoke "pytest" "-vv" "-k"
|
(invoke "pytest" "-vv" "-o" "asyncio_mode=auto"
|
||||||
|
"-k"
|
||||||
;; These tests try to open an outgoing connection.
|
;; These tests try to open an outgoing connection.
|
||||||
(string-append
|
(string-append
|
||||||
"not test_connect_timeout"
|
"not test_connect_timeout"
|
||||||
@ -5347,26 +5348,23 @@ Some things HTTP Core does do:
|
|||||||
"being_deleted"
|
"being_deleted"
|
||||||
" and not test_that_send_cause_client_to_be_not_closed"
|
" and not test_that_send_cause_client_to_be_not_closed"
|
||||||
" and not test_async_proxy_close"
|
" and not test_async_proxy_close"
|
||||||
" and not test_sync_proxy_close"))))))))
|
" and not test_sync_proxy_close"
|
||||||
|
;; This test is apparently incompatible with
|
||||||
|
;; python-click 8, fails with " AttributeError:
|
||||||
|
;; 'function' object has no attribute 'name'".
|
||||||
|
" and not test_main"))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-autoflake
|
(list python-cryptography
|
||||||
python-black
|
|
||||||
python-cryptography
|
|
||||||
python-flake8
|
|
||||||
python-flake8-bugbear
|
|
||||||
python-flake8-pie
|
|
||||||
python-isort
|
|
||||||
python-mypy
|
|
||||||
python-pytest
|
python-pytest
|
||||||
python-pytest-asyncio
|
python-pytest-asyncio
|
||||||
python-pytest-trio
|
python-pytest-trio
|
||||||
python-pytest-cov
|
|
||||||
python-trio
|
python-trio
|
||||||
python-trio-typing
|
python-trio-typing
|
||||||
python-trustme
|
python-trustme
|
||||||
python-uvicorn))
|
python-uvicorn))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-brotli
|
(list python-charset-normalizer
|
||||||
|
python-brotli
|
||||||
python-certifi
|
python-certifi
|
||||||
python-chardet
|
python-chardet
|
||||||
python-httpcore
|
python-httpcore
|
||||||
|
Loading…
Reference in New Issue
Block a user