diff options
Diffstat (limited to 'pkgs/development/python-modules/python-wifi/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/python-wifi/default.nix | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/python-wifi/default.nix b/pkgs/development/python-modules/python-wifi/default.nix index 05936274eef0..2dfd18079c72 100644 --- a/pkgs/development/python-modules/python-wifi/default.nix +++ b/pkgs/development/python-modules/python-wifi/default.nix @@ -1,7 +1,8 @@ -{ lib -, buildPythonPackage -, fetchPypi -, isPy27 +{ + lib, + buildPythonPackage, + fetchPypi, + isPy27, }: buildPythonPackage rec { @@ -21,7 +22,9 @@ buildPythonPackage rec { 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 ]; + license = with licenses; [ + lgpl2Plus + gpl2Plus + ]; }; - } |
