Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / wifi / default.nix
blob260f7e8a937f38831c37c4c0113f3c1001be788e
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pbkdf2
5 , pytestCheckHook
6 , pythonOlder
7 , substituteAll
8 , wirelesstools
9 }:
11 buildPythonPackage rec {
12   pname = "wifi";
13   version = "0.3.5";
14   format = "setuptools";
16   src = fetchFromGitHub {
17     owner = "rockymeza";
18     repo = pname;
19     rev = "v${version}";
20     hash = "sha256-scg/DvApvyQZtzDgkHFJzf9gCRfJgBvZ64CG/c2Cx8E=";
21   };
23   disabled = pythonOlder "2.6";
25   postPatch = ''
26     substituteInPlace wifi/scan.py \
27       --replace "/sbin/iwlist" "${wirelesstools}/bin/iwlist"
28   '';
30   nativeCheckInputs = [
31     pytestCheckHook
32   ];
34   propagatedBuildInputs = [
35     pbkdf2
36   ];
38   pythonImportsCheck = [ "wifi" ];
40   meta = with lib; {
41     description = "Provides a command line wrapper for iwlist and /etc/network/interfaces";
42     mainProgram = "wifi";
43     homepage = "https://github.com/rockymeza/wifi";
44     maintainers = with maintainers; [ rhoriguchi ];
45     license = licenses.bsd2;
46   };