From 8314510a021e9700df8bd24b0ba426c983b1b778 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 14 Sep 2015 23:44:03 +0200 Subject: [PATCH] pythonPackages.python-wifi: init at 0.6.0 --- pkgs/top-level/python-packages.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 93f45bc64d31..fe5e1743e45c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12161,6 +12161,27 @@ let }; }; + python-wifi = buildPythonPackage rec { + name = "python-wifi-${version}"; + version = "0.6.0"; + disabled = ! (isPy26 || isPy27 ); + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/python-wifi/${name}.tar.bz2"; + md5 = "f9d520a8c17b0dfffce95a8a7efba7dd"; + }; + + meta = { + inherit version; + description = "Read & write wireless card capabilities using the Linux Wireless Extensions"; + homepage = http://pythonwifi.tuxfamily.org/; + # From the README: "pythonwifi is licensed under LGPLv2+, however, the + # examples (e.g. iwconfig.py and iwlist.py) are licensed under GPLv2+." + license = with licenses; [ lgpl2Plus gpl2Plus ]; + maintainers = with maintainers; [ nckx ]; + }; + }; + pytz = buildPythonPackage rec { name = "pytz-${version}";