guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit f0f35ff8a315b3b6debe2ce63ace003b78b21f9c
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Sep 22 01:43:13 2025 +0200

    gnu: python-socks: Update to 2.7.2.
    
    * gnu/packages/python-web.scm (python-socks): Update to 2.7.2.
    [source]: Switch to git-fetch.
    [native-inputs]: Add python-pytest-trio.  Remove python-wheel.
    
    Change-Id: I0e75b01fb350d964997d5d3a6d8e8e6a1dcbcd67
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-web.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 8d9a073d39..2d7b5a74e9 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -10015,27 +10015,28 @@ realtime client and server.")
 (define-public python-socks
   (package
     (name "python-socks")
-    (version "2.6.1")
+    (version "2.7.2")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "python_socks" version))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/romis2012/python-socks";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "17pcyd1gg2a7k2i4lvnqi9095brhf7pbpkqfcjmhpzkgmfd94hwp"))))
+        (base32 "1alrfjkir69006qmr2ax3inrffk2bllpljwmprwczb44r0mya77m"))))
     (build-system pyproject-build-system)
-    (propagated-inputs
-     (list python-trio))
+    (propagated-inputs (list python-trio))
     (native-inputs
      (list python-anyio
            python-async-timeout
            python-flask
            python-pytest
            python-pytest-asyncio
+           python-pytest-trio
            python-setuptools
            python-tiny-proxy
            python-trustme
-           python-wheel
            python-yarl))
     (home-page "https://github.com/romis2012/python-socks";)
     (synopsis

Reply via email to