all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: John Doe <dftxbs3e@free.fr>
To: efraim@flashner.co.il
Cc: 44990@debbugs.gnu.org, John Doe <dftxbs3e@free.fr>
Subject: [bug#44990] [PATCH v3 5/8] gnu: Add python-socks.
Date: Sun, 27 Dec 2020 23:13:30 +0100	[thread overview]
Message-ID: <20201227221333.23351-6-dftxbs3e@free.fr> (raw)
In-Reply-To: <20201227221333.23351-1-dftxbs3e@free.fr>

* gnu/packages/python-xyz.scm (python-socks): New variable.
---
 gnu/packages/python-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b06f6011de..93e0292b28 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23272,3 +23272,30 @@ environment.")
       "Bitstring is a library for simple construction, analysis and modification
  of binary data.")
     (license license:expat)))
+
+(define-public python-socks
+  (package
+    (name "python-socks")
+    (version "1.1.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "python-socks" version))
+        (sha256
+          (base32
+            "1y9sp0hijywjrqwpjgpq3yjmfm6s0rj1br19xm77ffk72w5pdr26"))))
+    (build-system python-build-system)
+    (propagated-inputs
+      ;; For python-socks[asyncio]
+      `(("python-async-timeout" ,python-async-timeout)))
+    (native-inputs
+      `(("python-trio" ,python-trio)
+	("python-curio" ,python-curio)))
+    (home-page
+      "https://github.com/romis2012/python-socks")
+    (synopsis
+      "Core proxy (SOCKS4, SOCKS5, HTTP tunneling) functionality for Python")
+    (description
+      "Socks is a library providing core proxy (SOCKS4, SOCKS5, HTTP tunneling)
+ functionality.")
+    (license license:asl2.0)))
-- 
2.29.2





  parent reply	other threads:[~2020-12-27 22:15 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-01 11:53 [bug#44990] [PATCH] gnu: electrum: Update to 4.0.5 dftxbs3e
2020-12-01 11:55 ` [bug#44990] [PATCH 1/8] gnu: Add python-qtpy dftxbs3e
2020-12-01 11:55   ` [bug#44990] [PATCH 2/8] gnu: Add python-helpdev dftxbs3e
2020-12-01 11:55   ` [bug#44990] [PATCH 3/8] gnu: Add python-qdarkstyle dftxbs3e
2020-12-01 11:55   ` [bug#44990] [PATCH 4/8] gnu: Add python-bitstring dftxbs3e
2020-12-01 11:55   ` [bug#44990] [PATCH 5/8] gnu: Add python-socks dftxbs3e
2020-12-01 11:55   ` [bug#44990] [PATCH 6/8] gnu: python-aiohttp-socks: Update to 0.5.5 dftxbs3e
2020-12-01 11:55   ` [bug#44990] [PATCH 7/8] gnu: libsecp256k1: Update to 20200615-1-dbd41db dftxbs3e
2020-12-01 11:55   ` [bug#44990] [PATCH 8/8] gnu: electrum: Update to 4.0.5 dftxbs3e
2020-12-11 17:43 ` [bug#44990] [PATCH] " Ludovic Courtès
2020-12-11 19:53 ` [bug#44990] [PATCH v2 1/8] gnu: Add python-qtpy Léo Le Bouter via Guix-patches via
2020-12-11 19:53   ` [bug#44990] [PATCH v2 2/8] gnu: Add python-helpdev Léo Le Bouter via Guix-patches via
2020-12-11 19:53   ` [bug#44990] [PATCH v2 3/8] gnu: Add python-qdarkstyle Léo Le Bouter via Guix-patches via
2020-12-11 19:53   ` [bug#44990] [PATCH v2 4/8] gnu: Add python-bitstring Léo Le Bouter via Guix-patches via
2020-12-11 19:53   ` [bug#44990] [PATCH v2 5/8] gnu: Add python-socks Léo Le Bouter via Guix-patches via
2020-12-11 19:53   ` [bug#44990] [PATCH v2 6/8] gnu: python-aiohttp-socks: Update to 0.5.5 Léo Le Bouter via Guix-patches via
2020-12-11 19:53   ` [bug#44990] [PATCH v2 7/8] gnu: libsecp256k1: Update to 20200615-1-dbd41db Léo Le Bouter via Guix-patches via
2020-12-11 19:53   ` [bug#44990] [PATCH v2 8/8] gnu: electrum: Update to 4.0.7 Léo Le Bouter via Guix-patches via
2020-12-11 19:55 ` Léo Le Bouter via Guix-patches via
2020-12-11 20:00 ` [bug#44990] [PATCH v2 1/8] gnu: Add python-qtpy Léo Le Bouter via Guix-patches via
2020-12-11 20:00   ` [bug#44990] [PATCH v2 2/8] gnu: Add python-helpdev Léo Le Bouter via Guix-patches via
2020-12-11 20:01   ` [bug#44990] [PATCH v2 3/8] gnu: Add python-qdarkstyle Léo Le Bouter via Guix-patches via
2020-12-11 20:01   ` [bug#44990] [PATCH v2 4/8] gnu: Add python-bitstring Léo Le Bouter via Guix-patches via
2020-12-11 20:01   ` [bug#44990] [PATCH v2 5/8] gnu: Add python-socks Léo Le Bouter via Guix-patches via
2020-12-11 20:01   ` [bug#44990] [PATCH v2 6/8] gnu: python-aiohttp-socks: Update to 0.5.5 Léo Le Bouter via Guix-patches via
2020-12-11 20:01   ` [bug#44990] [PATCH v2 7/8] gnu: libsecp256k1: Update to 20200615-1-dbd41db Léo Le Bouter via Guix-patches via
2020-12-11 20:01   ` [bug#44990] [PATCH v2 8/8] gnu: electrum: Update to 4.0.7 Léo Le Bouter via Guix-patches via
2020-12-11 20:18 ` [bug#44990] [PATCH v2 1/8] gnu: Add python-qtpy John Doe
2020-12-11 20:18   ` [bug#44990] [PATCH v2 2/8] gnu: Add python-helpdev John Doe
2020-12-11 20:18   ` [bug#44990] [PATCH v2 3/8] gnu: Add python-qdarkstyle John Doe
2020-12-11 20:18   ` [bug#44990] [PATCH v2 4/8] gnu: Add python-bitstring John Doe
2020-12-11 20:18   ` [bug#44990] [PATCH v2 5/8] gnu: Add python-socks John Doe
2020-12-11 20:18   ` [bug#44990] [PATCH v2 6/8] gnu: python-aiohttp-socks: Update to 0.5.5 John Doe
2020-12-11 20:18   ` [bug#44990] [PATCH v2 7/8] gnu: libsecp256k1: Update to 20200615-1-dbd41db John Doe
2020-12-11 20:18   ` [bug#44990] [PATCH v2 8/8] gnu: electrum: Update to 4.0.7 John Doe
2020-12-21  8:18   ` [bug#44990] [PATCH v2 1/8] gnu: Add python-qtpy Efraim Flashner
2020-12-27 22:13     ` [bug#44990] [PATCH v3 0/8] gnu: electrum: Update to 4.0.9 John Doe
2020-12-27 22:13       ` [bug#44990] [PATCH v3 1/8] gnu: Add python-qtpy John Doe
2020-12-27 22:13       ` [bug#44990] [PATCH v3 2/8] gnu: Add python-helpdev John Doe
2020-12-27 22:13       ` [bug#44990] [PATCH v3 3/8] gnu: Add python-qdarkstyle John Doe
2020-12-27 22:13       ` [bug#44990] [PATCH v3 4/8] gnu: Add python-bitstring John Doe
2020-12-27 22:13       ` John Doe [this message]
2020-12-27 22:13       ` [bug#44990] [PATCH v3 6/8] gnu: python-aiohttp-socks: Update to 0.5.5 John Doe
2020-12-27 22:13       ` [bug#44990] [PATCH v3 7/8] gnu: libsecp256k1: Update to 20200615-1-dbd41db John Doe
2020-12-27 22:13       ` [bug#44990] [PATCH v3 8/8] gnu: electrum: Update to 4.0.9 John Doe
2020-12-27 22:26     ` [bug#44990] [PATCH v4 0/8] " John Doe
2020-12-27 22:26       ` [bug#44990] [PATCH v4 1/8] gnu: Add python-qtpy John Doe
2020-12-27 22:26       ` [bug#44990] [PATCH v4 2/8] gnu: Add python-helpdev John Doe
2020-12-27 22:26       ` [bug#44990] [PATCH v4 3/8] gnu: Add python-qdarkstyle John Doe
2020-12-27 22:26       ` [bug#44990] [PATCH v4 4/8] gnu: Add python-bitstring John Doe
2020-12-27 22:26       ` [bug#44990] [PATCH v4 5/8] gnu: Add python-socks John Doe
2020-12-27 22:26       ` [bug#44990] [PATCH v4 6/8] gnu: python-aiohttp-socks: Update to 0.5.5 John Doe
2020-12-27 22:26       ` [bug#44990] [PATCH v4 7/8] gnu: libsecp256k1: Update to 20200615-1-dbd41db John Doe
2020-12-27 22:26       ` [bug#44990] [PATCH v4 8/8] gnu: electrum: Update to 4.0.9 John Doe
2020-12-28 11:25       ` bug#44990: [PATCH v4 0/8] " Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201227221333.23351-6-dftxbs3e@free.fr \
    --to=dftxbs3e@free.fr \
    --cc=44990@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.