diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-12 21:55:13 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-13 12:00:50 +0100 |
| commit | 80a24d6dd52d4b287753e01e7423786f6b401edd (patch) | |
| tree | fd268463c1f8f9e66a91f19df1fdc99a2e4c8ed6 /gnu/packages/python-xyz.scm | |
| parent | cbe28b9077b8594ad3965e7b9af13b608639d783 (diff) | |
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index eb1709cd59f..b21749d4030 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 |
