Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-wifi / default.nix
blob05936274eef01afdce5b611777d66d5d7fead25c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy27
5 }:
7 buildPythonPackage rec {
8   pname = "python-wifi";
9   version = "0.6.1";
10   format = "setuptools";
11   disabled = !isPy27;
13   src = fetchPypi {
14     inherit pname version;
15     extension = "tar.bz2";
16     sha256 = "149c3dznb63d82143cz5hqdim0mqjysz6p3yk0zv271vq3xnmzvv";
17   };
19   meta = with lib; {
20     description = "Read & write wireless card capabilities using the Linux Wireless Extensions";
21     homepage = "http://pythonwifi.tuxfamily.org/";
22     # From the README: "pythonwifi is licensed under LGPLv2+, however, the
23     # examples (e.g. iwconfig.py and iwlist.py) are licensed under GPLv2+."
24     license = with licenses; [ lgpl2Plus gpl2Plus ];
25   };