11 buildPythonPackage rec {
14 format = "setuptools";
16 src = fetchFromGitHub {
20 hash = "sha256-scg/DvApvyQZtzDgkHFJzf9gCRfJgBvZ64CG/c2Cx8E=";
23 disabled = pythonOlder "2.6";
26 substituteInPlace wifi/scan.py \
27 --replace "/sbin/iwlist" "${wirelesstools}/bin/iwlist"
30 nativeCheckInputs = [ pytestCheckHook ];
32 propagatedBuildInputs = [ pbkdf2 ];
34 pythonImportsCheck = [ "wifi" ];
37 description = "Provides a command line wrapper for iwlist and /etc/network/interfaces";
39 homepage = "https://github.com/rockymeza/wifi";
40 maintainers = with maintainers; [ rhoriguchi ];
41 license = licenses.bsd2;