Commit 2ff878b4 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.pytapo: format with nixfmt

parent 244a8de7
Loading
Loading
Loading
Loading
+12 −15
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pycryptodome
, requests
, rtp
, urllib3
, setuptools
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pythonOlder,
  pycryptodome,
  requests,
  rtp,
  urllib3,
  setuptools,
}:

buildPythonPackage rec {
@@ -21,9 +22,7 @@ buildPythonPackage rec {
    hash = "sha256-rc9XhV99vzgoUF5ERFmJHHB9GMwq5Y44CJKg+g5tjOo=";
  };

  build-system = [
    setuptools
  ];
  build-system = [ setuptools ];

  dependencies = [
    pycryptodome
@@ -32,9 +31,7 @@ buildPythonPackage rec {
    urllib3
  ];

  pythonImportsCheck = [
    "pytapo"
  ];
  pythonImportsCheck = [ "pytapo" ];

  # Tests require actual hardware
  doCheck = false;