mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 08:23:25 +00:00
iwlib: init at 1.7.0
This commit is contained in:
parent
0c21eefc36
commit
1b50bc0dbf
26
pkgs/development/python-modules/iwlib/default.nix
Normal file
26
pkgs/development/python-modules/iwlib/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -4894,6 +4894,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user