ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / basiciw / default.nix
blob8ae4a59cfb471f29b3ea8b4e454184ff452782a4
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , gcc
5 , wirelesstools
6 , isPy27
7 , isPyPy
8 }:
10 buildPythonPackage rec {
11   pname = "basiciw";
12   version = "0.2.2";
14   disabled = isPy27 || isPyPy;
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "1ajmflvvlkflrcmqmkrx0zaira84z8kv4ssb2jprfwvjh8vfkysb";
19   };
21   buildInputs = [ gcc ];
22   propagatedBuildInputs = [ wirelesstools ];
24   meta = {
25     description = "Get info about wireless interfaces using libiw";
26     homepage = "https://github.com/enkore/basiciw";
27     platforms = lib.platforms.linux;
28     license = lib.licenses.gpl2;
29   };