diff options
Diffstat (limited to 'pkgs/development/python-modules/plexauth/default.nix')
-rw-r--r-- | pkgs/development/python-modules/plexauth/default.nix | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/plexauth/default.nix b/pkgs/development/python-modules/plexauth/default.nix index fd7f11e14d27..caa1dcdf1d74 100644 --- a/pkgs/development/python-modules/plexauth/default.nix +++ b/pkgs/development/python-modules/plexauth/default.nix @@ -1,4 +1,10 @@ -{ lib, buildPythonPackage, fetchFromGitHub, aiohttp, isPy27 }: +{ + lib, + buildPythonPackage, + fetchFromGitHub, + aiohttp, + isPy27, +}: buildPythonPackage rec { pname = "plexauth"; @@ -19,9 +25,7 @@ buildPythonPackage rec { doCheck = false; # at least guarantee the module can be imported - pythonImportsCheck = [ - "plexauth" - ]; + pythonImportsCheck = [ "plexauth" ]; meta = with lib; { homepage = "https://github.com/jjlawren/python-plexauth/"; |