mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add python-socksipychain.
* gnu/packages/python-xyz.scm (python-socksipychain, python2-socksipychain): New variables.
This commit is contained in:
parent
af48a2006a
commit
6fcceb2346
1 changed files with 29 additions and 0 deletions
|
@ -4453,6 +4453,35 @@ (define-public python-socksipy-branch
|
||||||
(define-public python2-socksipy-branch
|
(define-public python2-socksipy-branch
|
||||||
(package-with-python2 python-socksipy-branch))
|
(package-with-python2 python-socksipy-branch))
|
||||||
|
|
||||||
|
(define-public python-socksipychain
|
||||||
|
(package
|
||||||
|
(name "python-socksipychain")
|
||||||
|
(version "2.0.15")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/pagekite/PySocksipyChain.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1pkljnh9hfwla8sg7mil4f9zrnsqj0dbhr3crxjw3k8dnjz70dvk"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f)) ; Tests try to access the network.
|
||||||
|
(home-page "http://pagekite.net/wiki/Floss/PySocksipyChain/")
|
||||||
|
(synopsis "Python SOCKS module with chained proxies support")
|
||||||
|
(description
|
||||||
|
"SocksiPyChain is a modified version of the SocksiPy SOCKS module, which
|
||||||
|
adds support for arbitrary chaining of proxy servers and various modes of
|
||||||
|
TLS/SSL encryption. It was developed for use in PageKite, and also includes
|
||||||
|
a simple netcat replacement with chaining support.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python2-socksipychain
|
||||||
|
(package-with-python2 python-socksipychain))
|
||||||
|
|
||||||
(define-public python-pycodestyle
|
(define-public python-pycodestyle
|
||||||
(package
|
(package
|
||||||
(name "python-pycodestyle")
|
(name "python-pycodestyle")
|
||||||
|
|
Loading…
Reference in a new issue