Commit 2289c495 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.pyotgw: format with nixfmt

parent 53e88a76
Loading
Loading
Loading
Loading
+13 −18
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, pyserial-asyncio
, pyserial-asyncio-fast
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pyserial-asyncio,
  pyserial-asyncio-fast,
  pytest-asyncio,
  pytestCheckHook,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
@@ -23,22 +24,16 @@ buildPythonPackage rec {
    hash = "sha256-SowM+glni1PGkM87JT9+QWTD4Tu9XmsfXg99GZzSCJM=";
  };

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

  dependencies = [
    pyserial-asyncio-fast
  ];
  dependencies = [ pyserial-asyncio-fast ];

  nativeCheckInputs = [
    pytest-asyncio
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "pyotgw"
  ];
  pythonImportsCheck = [ "pyotgw" ];

  meta = with lib; {
    description = "Python module to interact the OpenTherm Gateway";