summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-06-22 02:08:45 -0300
committerVinicius Monego <monego@posteo.net>2025-06-22 11:21:44 -0300
commit97b3b63fcdf7cceaa2b305f8c81a9f90f7132711 (patch)
treebaaf6796ce998f2fa51fbc8efeb403f3b877988c /gnu/packages/python-xyz.scm
parentf731d71846a6df8aab13e1639ae685f0d4cc3874 (diff)
gnu: python-scapy: Update to 2.6.1.
* gnu/packages/python-xyz.scm (python-scapy): Update to 2.6.1. [build-system]: Use pyproject-build-system. [native-inputs]: Add python-setuptools, python-wheel. Change-Id: I56f0f87e0eb1a49bd79cad6f36451dfdd6eb78e0
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d85e61c455..308cf6ff19 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3463,13 +3463,13 @@ iotop, uptime, pidof, tty, taskset, pmap.")
(define-public python-scapy
(package
(name "python-scapy")
- (version "2.5.0")
+ (version "2.6.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "scapy" version))
(sha256
(base32
- "1hpbbmpcn4dwj3z7i7sz4cnbpkaf57p7mvl3p84x9n2gflmhq9jv"))))
+ "1ig6qv1kpk7z9n8xf41y5fzywfv42xzd61bf79f3x19w73idf03n"))))
(arguments
'(#:tests? #f)) ; There is a test directory, but apparently no
; automatic testing framework.
@@ -3477,7 +3477,8 @@ iotop, uptime, pidof, tty, taskset, pmap.")
;; matplotlib. If functionality is missing, these should be added.
;; See
;; https://scapy.readthedocs.io/en/latest/installation.html#optional-dependencies
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (native-inputs (list python-setuptools python-wheel))
(home-page "https://scapy.net")
(synopsis "Python network packet crafting library")
(description