From 964fb46db07774bea4fd0a7ef690aa135b55cd17 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 May 2024 22:54:14 +0200 Subject: [PATCH] python312Packages.nanoleaf: format with nixfmt --- .../python-modules/nanoleaf/default.nix | 25 ++++++++----------- 1 file changed, 10 insertions(+), 15 deletions(-) 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";