Commit 964fb46d authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.nanoleaf: format with nixfmt

parent c1db7c11
Loading
Loading
Loading
Loading
+10 −15
Original line number Diff line number Diff line
{ 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";