diff options
Diffstat (limited to 'pkgs/development/python-modules/goveelights/default.nix')
-rw-r--r-- | pkgs/development/python-modules/goveelights/default.nix | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/goveelights/default.nix b/pkgs/development/python-modules/goveelights/default.nix index 254ae57d32f6..f12caa93c6be 100644 --- a/pkgs/development/python-modules/goveelights/default.nix +++ b/pkgs/development/python-modules/goveelights/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pythonOlder -, requests +{ + lib, + buildPythonPackage, + fetchPypi, + pythonOlder, + requests, }: buildPythonPackage rec { @@ -17,16 +18,12 @@ buildPythonPackage rec { hash = "sha256-A7tfY+aFzhfruCZ43usj1/CsTejbPMzHM8SYrY/TU1s="; }; - propagatedBuildInputs = [ - requests - ]; + propagatedBuildInputs = [ requests ]; # Module has no tests doCheck = false; - pythonImportsCheck = [ - "goveelights" - ]; + pythonImportsCheck = [ "goveelights" ]; meta = with lib; { description = "Python module for interacting with the Govee API"; |