From 80a24d6dd52d4b287753e01e7423786f6b401edd Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sun, 12 Oct 2025 21:55:13 +0200 Subject: [PATCH] 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 --- 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 eb1709cd59f7b2a797010a06183a70bd1fd6c955..b21749d40307636294497955c9ec17aa3262662d 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