diff options
author | Ricardo Wurmus <[email protected]> | 2025-01-01 22:42:00 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-20 21:37:30 +0100 |
commit | f0d9e767230041960b587bd268f04096d719bcc5 (patch) | |
tree | 02270a4f7d9aee951a62889e892f486207deeea1 | |
parent | 6c85be6588573c7d2520b47ef88762c008ef540f (diff) |
gnu: python-aiohttp-socks: Update to 0.10.1.
* gnu/packages/python-web.scm (python-aiohttp-socks): Update to 0.10.1.
[build-system]: Use pyproject-build-system.
[arguments]: Disable tests.
[native-inputs]: Add python-setuptools and python-wheel.
[propagated-inputs]: Remove python-attrs.
Change-Id: I3d95d8ffb0b4abf368cd16e86aba2a14a69a1766
-rw-r--r-- | gnu/packages/python-web.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index a8881e75c6..69a46b1453 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -799,17 +799,19 @@ Callback Hell. (define-public python-aiohttp-socks (package (name "python-aiohttp-socks") - (version "0.7.1") + (version "0.10.1") (source (origin (method url-fetch) (uri (pypi-uri "aiohttp_socks" version)) (sha256 (base32 - "06il43dv6qm858af841vq9qadw6h7qsfs06nnwagmwqyi72cl592")))) - (build-system python-build-system) + "0s70jpcr9wc8ld2v1w309cz7r8mm2bipf6zbkdqqaa0z0pwf3wj9")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #false)) ;none included (propagated-inputs - (list python-aiohttp python-attrs python-socks)) + (list python-aiohttp python-socks)) + (native-inputs (list python-setuptools python-wheel)) (home-page "https://github.com/romis2012/aiohttp-socks") (synopsis "SOCKS proxy connector for aiohttp") (description "This package provides a SOCKS proxy connector for |