~ruther/guix-local

61ede04a20ef432be8620b5c9df9318ffd114f96 — Nicolas Graves 7 months ago 80a24d6
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>
1 files changed, 11 insertions(+), 10 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +11 -10
@@ 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