guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 80a24d6dd52d4b287753e01e7423786f6b401edd
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Oct 12 21:55:13 2025 +0200

    gnu: python-socksipy-branch: Switch to pyproject.
    
    * gnu/packages/python-xyz.scm (python-socksipy-branch):
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-setuptools.
    [source, arguments, description]: Improve style.
    
    Change-Id: Iec3eb91557e8875a544e8214977f5866951a36fc
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 20 +++++++++-----------
 1 file changed, 9 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index eb1709cd59..b21749d403 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -11867,20 +11867,18 @@ the results.")
        (method url-fetch)
        (uri (pypi-uri "SocksiPy-branch" version))
        (sha256
-        (base32
-         "01l41v4g7fy9fzvinmjxy6zcbhgqaif8dhdqm4w90fwcw9h51a8p"))))
-    (build-system python-build-system)
-    (arguments
-     `(#:tests? #f)) ; There are no tests
+        (base32 "01l41v4g7fy9fzvinmjxy6zcbhgqaif8dhdqm4w90fwcw9h51a8p"))))
+    (build-system pyproject-build-system)
+    (arguments (list #:tests? #f))      ; There are no tests
+    (native-inputs (list python-setuptools))
     (home-page "https://code.google.com/archive/p/socksipy-branch/";)
     (synopsis "Python SOCKS module")
     (description
-     "SocksiPy - A Python SOCKS client module.  It provides a
-socket-like interface that supports connections to any TCP
-service through the use of a SOCKS4, SOCKS5 or HTTP proxy.
-The original version was developed by Dan Haim, this is a
-branch created by Mario Vilas to address some open issues,
-as the original project seems to have been abandoned circa 2007.")
+     "SocksiPy - A Python SOCKS client module.  It provides a socket-like
+interface that supports connections to any TCP service through the use of a
+SOCKS4, SOCKS5 or HTTP proxy.  The original version was developed by Dan Haim,
+this is a branch created by Mario Vilas to address some open issues,as the
+original project seems to have been abandoned circa 2007.")
     (license license:bsd-3)))
 
 (define-public python-socksipychain

Reply via email to