[bug#75420,python-team,07/11] gnu: python-socks: Update to 2.4.4.

Message ID ca014c55c3bbfe43b79861c2527bcfe22a00c3d3.1736256868.git.arjan@adriaan.se
State New
Headers
Series Fix python-matrix-nio and pantalaimon builds. |

Commit Message

Arjan Adriaanse Jan. 7, 2025, 2:09 p.m. UTC
* gnu/packages/python-web.scm (python-socks): Update to 2.4.4.

Change-Id: I74fb7fee7432c183ac513c7157c55eb4d8b74794
---
 gnu/packages/python-web.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)
  

Patch

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a5371ef601..aacfd12ed6 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -8416,14 +8416,14 @@  (define-public python-socketio
 (define-public python-socks
   (package
     (name "python-socks")
-    (version "2.0.3")
+    (version "2.4.4")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "python-socks" version))
        (sha256
         (base32
-         "12msk06c0glljcrx1byd78xgv05lxw81vknqwhn8ccs7an7cmag3"))))
+         "0bnj78kapsd13wigx2a3l1jkk54qggcarzj6760jqq83hbvy9a75"))))
     (build-system python-build-system)
     (arguments
      `(#:tests? #f                      ; tests not included
@@ -8434,7 +8434,10 @@  (define-public python-socks
              (when tests?
                (invoke "pytest" "tests/" "-s")))))))
     (propagated-inputs
-     (list python-async-timeout python-curio python-trio))
+     (list python-anyio
+           python-async-timeout
+           python-curio
+           python-trio))
     (native-inputs
      (list python-pytest))
     (home-page "https://github.com/romis2012/python-socks")