2022-04-27 09:35:20 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pbkdf2
|
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
|
|
|
, substituteAll
|
|
|
|
, wirelesstools
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "wifi";
|
|
|
|
version = "0.3.5";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rockymeza";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-scg/DvApvyQZtzDgkHFJzf9gCRfJgBvZ64CG/c2Cx8E=";
|
2022-04-27 09:35:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
disabled = pythonOlder "2.6";
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace wifi/scan.py \
|
|
|
|
--replace "/sbin/iwlist" "${wirelesstools}/bin/iwlist"
|
|
|
|
'';
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-04-27 09:35:20 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pbkdf2
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "wifi" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Provides a command line wrapper for iwlist and /etc/network/interfaces";
|
|
|
|
homepage = "https://github.com/rockymeza/wifi";
|
|
|
|
maintainers = with maintainers; [ rhoriguchi ];
|
|
|
|
license = licenses.bsd2;
|
|
|
|
};
|
|
|
|
}
|