gnu: Add python-iwlib.

* gnu/packages/python-xyz.scm (python-iwlib): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Stephen Paul Weber 2021-10-18 12:48:32 -05:00 committed by Ludovic Courtès
parent 135161ded9
commit 5e21fc56ed
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -28062,3 +28062,23 @@ (define-public python-sgmllib3k
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)))