Merge pull request #223979 from jcspeegs/iwlib-init

This commit is contained in:
Janik 2023-07-04 19:12:32 +02:00 committed by GitHub
commit 6d6682772b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View file

@ -7435,6 +7435,12 @@
githubId = 8685505;
name = "Jen-Chieh Shen";
};
jcspeegs = {
email = "justin@speegs.com";
github = "jcspeegs";
githubId = 34928409;
name = "Justin Speegle";
};
jcumming = {
email = "jack@mudshark.org";
github = "jcumming";

View file

@ -0,0 +1,26 @@
{ lib, buildPythonPackage, fetchPypi, wirelesstools, cffi, pytest }:
buildPythonPackage rec {
pname = "iwlib";
version = "1.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "a805f6597a70ee3001aba8f039fb7b2dcb75dc15c4e7852f5594fd6379196da1";
};
propagatedBuildInputs = [ wirelesstools cffi ];
nativeBuildInputs = [ pytest ];
pythonImportsCheck = [ "iwlib" ];
doCheck = true;
checkInputs = [ pytest ];
checkPhase = "python iwlib/_iwlib_build.py; pytest -v";
meta = with lib; {
homepage = "https://github.com/nhoad/python-iwlib";
description = "Python interface for the Wireless Tools utility collection";
changelog = "https://github.com/nhoad/python-iwlib#change-history";
maintainers = with maintainers; [ jcspeegs ];
license = licenses.gpl2Only;
};
}

View file

@ -5143,6 +5143,8 @@ self: super: with self; {
itypes = callPackage ../development/python-modules/itypes { };
iwlib = callPackage ../development/python-modules/iwlib { };
j2cli = callPackage ../development/python-modules/j2cli { };
jaconv = callPackage ../development/python-modules/jaconv { };