diff --git a/pkgs/development/python-modules/nanoleaf/default.nix b/pkgs/development/python-modules/nanoleaf/default.nix index 86ac6ba900f7..995c56510d65 100644 --- a/pkgs/development/python-modules/nanoleaf/default.nix +++ b/pkgs/development/python-modules/nanoleaf/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pythonOlder -, requests -, setuptools +{ + lib, + buildPythonPackage, + fetchPypi, + pythonOlder, + requests, + setuptools, }: buildPythonPackage rec { @@ -24,20 +25,14 @@ buildPythonPackage rec { --replace-fail 'gitVersion' '"${version}"' ''; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; - dependencies = [ - requests - ]; + dependencies = [ requests ]; # Module has no test doCheck = false; - pythonImportsCheck = [ - "nanoleaf" - ]; + pythonImportsCheck = [ "nanoleaf" ]; meta = with lib; { description = "Module for interacting with Nanoleaf Aurora lighting";