guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/04: gnu: Add python-icmplib.


From: guix-commits
Subject: 03/04: gnu: Add python-icmplib.
Date: Sat, 14 Oct 2023 09:59:29 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit 64e7081851c1412aa796a28d949f961da046a69a
Author: Gabriel Wicki <gabriel@erlikon.ch>
AuthorDate: Thu Sep 28 14:25:44 2023 +0200

    gnu: Add python-icmplib.
    
    * gnu/packages/python-xyz.scm (python-icmplib): New variable.
    
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 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 c889f16685..1b9ac0a5f8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1830,6 +1830,28 @@ It can handle tasks such as scanning, tracerouting, 
probing, unit tests,
 attacks or network discovery.")
     (license license:gpl2)))
 
+(define-public python-icmplib
+  (package
+    (name "python-icmplib")
+    (version "3.0.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "icmplib" version))
+       (sha256
+        (base32 "1phnlgbb5di79ijm55pyd5jj1ggss4b6nn6mw701h501vcn8z1jp"))))
+    (arguments
+     '(#:tests? #f)) ;test data not present
+    (build-system python-build-system)
+    (home-page "https://github.com/ValentinBELYN/icmplib";)
+    (synopsis
+     "Python implementation of the Internet Control Message Protocol (ICMP)")
+    (description
+     "@code{icmplib} is a supporting library for both IPv4 and IPv6 networks.
+ICMP is typically used for diagnostic or control purposes - well known from
+utilities such as ping(1).")
+    (license license:lgpl3)))
+
 (define-public python-rasterio
   (package
     (name "python-rasterio")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]