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