guix-patches
[Top][All Lists]
Advanced

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

[bug#51272] [PATCH 3/4] gnu: Add python-iwlib.


From: Stephen Paul Weber
Subject: [bug#51272] [PATCH 3/4] gnu: Add python-iwlib.
Date: Mon, 18 Oct 2021 12:48:32 -0500

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4135812f11..238e6d2b26 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27467,3 +27467,22 @@ and powerful way to handle real-world data, featuring:
      "This package provides the @code{python-box} Python module.
 It implements advanced Python dictionaries with dot notation access.")
     (license license:expat)))
+
+(define-public python-iwlib
+  (package
+    (name "python-iwlib")
+    (version "1.7.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "iwlib" version))
+        (sha256
+          (base32 "18bd35wn7zclalpqbry42pf7bjrdggxkkw58mc0k1vkhg9czc1d8"))))
+    (build-system python-build-system)
+    (inputs
+      `(("wireless-tools" ,wireless-tools)))
+    (propagated-inputs `(("python-cffi" ,python-cffi)))
+    (home-page "https://github.com/nhoad/python-iwlib";)
+    (synopsis "Python module to interface with iwlib")
+    (description "An interface to iw wireless tools.")
+    (license license:gpl2)))
-- 
2.30.2





reply via email to

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