From 61ede04a20ef432be8620b5c9df9318ffd114f96 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sun, 12 Oct 2025 22:03:39 +0200 Subject: [PATCH] gnu: python-socksipychain: Update to 2.1.3-0.570c75c. * gnu/packages/python-xyz.scm (python-socksipychain): Update to 2.1.3-0.570c75c. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. [arguments]: Improve style. Change-Id: I085f49a57e7140bc21d01eb22d40a04d6270664a Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b21749d40307636294497955c9ec17aa3262662d..24b41b77af4e5dccb6e5ccbe398b2ee002a91589 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11884,22 +11884,23 @@ original project seems to have been abandoned circa 2007.") (define-public python-socksipychain (package (name "python-socksipychain") - (version "2.1.2") + (properties '((commit . "570c75c55661db175bd733996ed1ab68fc4e3b33") + (revision . "0"))) + (version (git-version "2.1.3" + (assoc-ref properties 'revision) + (assoc-ref properties 'commit))) (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/pagekite/PySocksipyChain") - (commit (string-append "v" version)))) + (url "https://github.com/pagekite/PySocksipyChain") + (commit (assoc-ref properties 'commit)))) (file-name (git-file-name name version)) (sha256 - (base32 - "02pp994qmiivkdx4y6az5q80l6rzy8g6d2ipvp7kns7lsxvmc2y7")))) - (build-system python-build-system) - (arguments - `(#:tests? #f)) ; Tests try to access the network. - (propagated-inputs - (list python-six)) + (base32 "1fi82id1qgh63wm8k1gcxpkaa8ic0mwliq7x3iy9lxihaqmr0zww")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; Tests try to access the network. + (native-inputs (list python-setuptools)) (home-page "http://pagekite.net/wiki/Floss/PySocksipyChain/") (synopsis "Python SOCKS module with chained proxies support") (description