lol

python312Packages.pyotgw: format with nixfmt

+13 -18
+13 -18
pkgs/development/python-modules/pyotgw/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , pyserial-asyncio 5 - , pyserial-asyncio-fast 6 - , pytest-asyncio 7 - , pytestCheckHook 8 - , pythonOlder 9 - , setuptools 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pyserial-asyncio, 6 + pyserial-asyncio-fast, 7 + pytest-asyncio, 8 + pytestCheckHook, 9 + pythonOlder, 10 + setuptools, 10 11 }: 11 12 12 13 buildPythonPackage rec { ··· 23 24 hash = "sha256-SowM+glni1PGkM87JT9+QWTD4Tu9XmsfXg99GZzSCJM="; 24 25 }; 25 26 26 - build-system = [ 27 - setuptools 28 - ]; 27 + build-system = [ setuptools ]; 29 28 30 - dependencies = [ 31 - pyserial-asyncio-fast 32 - ]; 29 + dependencies = [ pyserial-asyncio-fast ]; 33 30 34 31 nativeCheckInputs = [ 35 32 pytest-asyncio 36 33 pytestCheckHook 37 34 ]; 38 35 39 - pythonImportsCheck = [ 40 - "pyotgw" 41 - ]; 36 + pythonImportsCheck = [ "pyotgw" ]; 42 37 43 38 meta = with lib; { 44 39 description = "Python module to interact the OpenTherm Gateway";