lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.velbus-aio: format with nixfmt

+13 -18
+13 -18
pkgs/development/python-modules/velbus-aio/default.nix
··· 1 - { lib 2 - , backoff 3 - , buildPythonPackage 4 - , fetchFromGitHub 5 - , pythonOlder 6 - , pyserial 7 - , pyserial-asyncio 8 - , pytestCheckHook 9 - , setuptools 1 + { 2 + lib, 3 + backoff, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + pythonOlder, 7 + pyserial, 8 + pyserial-asyncio, 9 + pytestCheckHook, 10 + setuptools, 10 11 }: 11 12 12 13 buildPythonPackage rec { ··· 24 25 fetchSubmodules = true; 25 26 }; 26 27 27 - build-system = [ 28 - setuptools 29 - ]; 28 + build-system = [ setuptools ]; 30 29 31 30 dependencies = [ 32 31 backoff ··· 34 33 pyserial-asyncio 35 34 ]; 36 35 37 - nativeCheckInputs = [ 38 - pytestCheckHook 39 - ]; 36 + nativeCheckInputs = [ pytestCheckHook ]; 40 37 41 - pythonImportsCheck = [ 42 - "velbusaio" 43 - ]; 38 + pythonImportsCheck = [ "velbusaio" ]; 44 39 45 40 meta = with lib; { 46 41 description = "Python library to support the Velbus home automation system";