guix-commits
[Top][All Lists]
Advanced

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

06/19: gnu: Add python-iwlib.


From: guix-commits
Subject: 06/19: gnu: Add python-iwlib.
Date: Tue, 23 Nov 2021 04:26:34 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 5e21fc56edb817c1f327963c9ca9e2330efc2a39
Author: Stephen Paul Weber <singpolyma@singpolyma.net>
AuthorDate: Mon Oct 18 12:48:32 2021 -0500

    gnu: Add python-iwlib.
    
    * gnu/packages/python-xyz.scm (python-iwlib): New variable.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0020412..fdbca24 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28062,3 +28062,23 @@ interfaces.")
 It is used to parse text files formatted in @acronym{SGML,Standard Generalized
 Mark-up Language}.")
     (license license:bsd-3)))
+
+(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
+     "This package provides a Python interface to iw wireless tools.")
+    (license license:gpl2)))



reply via email to

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