diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-01 22:40:32 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:30 +0100 |
| commit | 6c85be6588573c7d2520b47ef88762c008ef540f (patch) | |
| tree | 147998a04a69524ba8a262c521e1676751d8d244 /gnu/packages/python-web.scm | |
| parent | 7060bbb080c7fcb4619c3bec2f4cad79c11a0782 (diff) | |
gnu: python-socks: Update to 2.6.1.
* gnu/packages/python-web.scm (python-socks): Update to 2.6.1.
[arguments]: Enable tests; remove custom 'check phase.
[build-system]: Use pyproject-build-system.
[propagated-inputs]: Remove python-async-timeout and python-curio.
[native-inputs]: Add python-anyio, python-async-timeout, python-flask,
python-pytest-asyncio, python-setuptools, python-tiny-proxy, python-trustme,
python-wheel, and python-yarl.
Change-Id: If1b10ed7a2a6ab7358c7e440224b5c406977ad68
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 1868f2d1238..a8881e75c64 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -8451,27 +8451,28 @@ fast. It allows the usage of the @code{async/await} syntax added in Python (define-public python-socks (package (name "python-socks") - (version "2.0.3") + (version "2.6.1") (source (origin (method url-fetch) - (uri (pypi-uri "python-socks" version)) + (uri (pypi-uri "python_socks" version)) (sha256 (base32 - "12msk06c0glljcrx1byd78xgv05lxw81vknqwhn8ccs7an7cmag3")))) - (build-system python-build-system) - (arguments - `(#:tests? #f ; tests not included - #:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "tests/" "-s"))))))) + "17pcyd1gg2a7k2i4lvnqi9095brhf7pbpkqfcjmhpzkgmfd94hwp")))) + (build-system pyproject-build-system) (propagated-inputs - (list python-async-timeout python-curio python-trio)) + (list python-trio)) (native-inputs - (list python-pytest)) + (list python-anyio + python-async-timeout + python-flask + python-pytest + python-pytest-asyncio + python-setuptools + python-tiny-proxy + python-trustme + python-wheel + python-yarl)) (home-page "https://github.com/romis2012/python-socks") (synopsis "Core proxy (SOCKS4, SOCKS5, HTTP tunneling) functionality for Python") |
