Bruno Victal <mirai@HIDDEN>
to control <at> debbugs.gnu.org
.
Full text available.Bruno Victal <mirai@HIDDEN>
to control <at> debbugs.gnu.org
.
Full text available.Received: (at submit) by debbugs.gnu.org; 11 Jan 2023 16:37:43 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Wed Jan 11 11:37:43 2023 Received: from localhost ([127.0.0.1]:43643 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1pFe6g-0002It-Vs for submit <at> debbugs.gnu.org; Wed, 11 Jan 2023 11:37:43 -0500 Received: from lists.gnu.org ([209.51.188.17]:56302) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <gabriel@HIDDEN>) id 1pFe6f-0002Ii-OB for submit <at> debbugs.gnu.org; Wed, 11 Jan 2023 11:37:42 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <gabriel@HIDDEN>) id 1pFe6S-0004EX-LW for guix-patches@HIDDEN; Wed, 11 Jan 2023 11:37:29 -0500 Received: from chimborazo.ee.ethz.ch ([129.132.2.15]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <gabriel@HIDDEN>) id 1pFe6Q-0007Ul-0I for guix-patches@HIDDEN; Wed, 11 Jan 2023 11:37:28 -0500 Received: from blackbox (unknown [85.195.207.206]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) (Authenticated sender: gabriel) by chimborazo.ee.ethz.ch (Postfix) with ESMTPSA id 41AFB40225 for <guix-patches@HIDDEN>; Wed, 11 Jan 2023 17:37:03 +0100 (CET) Date: Wed, 11 Jan 2023 17:36:59 +0100 From: Gabriel Wicki <gabriel@HIDDEN> To: guix-patches@HIDDEN Subject: New package: python-scapy Message-ID: <20230111163659.wudbizhylifjt3nj@blackbox> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=129.132.2.15; envelope-from=gabriel@HIDDEN; helo=chimborazo.ee.ethz.ch X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -2.3 (--) Hi! I had time to pack some more software for our favorite distro: Python Scapy. It's a powerful tool which allows the creation and inspection of ethernet frames and other network traffic packets from within Python. From f2ca7968afdc5013d78f38e47bf9bfc34af2baa0 Mon Sep 17 00:00:00 2001 From: Gabriel Wicki <gabriel@HIDDEN> Date: Mon, 9 Jan 2023 16:06:20 +0100 Subject: [PATCH] gnu: Add package python-scapy * gnu/packages/python-xyz.scm (python-scapy): New variable. --- gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 32d826d3c5..7e6704f4aa 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -132,6 +132,7 @@ ;;; Copyright © 2022 Garek Dyszel <garekdyszel@HIDDEN> ;;; Copyright © 2022 Baptiste Strazzulla <bstrazzull@HIDDEN> ;;; Copyright © 2022 Nicolas Graves <ngraves@HIDDEN> +;;; Copyright © 2023 Gabriel Wicki <gabriel@HIDDEN> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1462,6 +1463,27 @@ (define-public python-psutil iotop, uptime, pidof, tty, taskset, pmap.") (license license:bsd-3))) +(define-public python-scapy + (package + (name "python-scapy") + (version "2.5.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "scapy" version)) + (sha256 + (base32 + "1hpbbmpcn4dwj3z7i7sz4cnbpkaf57p7mvl3p84x9n2gflmhq9jv")))) + (arguments + '(#:tests? #f)) ;no test + (build-system python-build-system) + (home-page "https://scapy.net") + (synopsis "Python network packet crafting library") + (description + "Scapy is a powerful interactive packet manipulation program. +It is able to forge or decode packets of a wide number of protocols, send them +on the wire, capture them, match requests and replies, and much more.") + (license license:gpl2))) + (define-public python-shapely (package (name "python-shapely") -- 2.38.1
Gabriel Wicki <gabriel@HIDDEN>
:guix-patches@HIDDEN
.
Full text available.guix-patches@HIDDEN
:bug#60732
; Package guix-patches
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.