Merge pull request #309044 from fabaff/bellows-bump

python312Packages.bellows: format with nixfmt

authored by Fabian Affolter and committed by GitHub 2ddef55d 6340bfba

+19 -24
+19 -24
pkgs/development/python-modules/bellows/default.nix
··· 1 - { lib 2 - , async-timeout 3 - , buildPythonPackage 4 - , click 5 - , click-log 6 - , fetchFromGitHub 7 - , pure-pcapy3 8 - , pyserial-asyncio 9 - , pytest-asyncio 10 - , pytest-timeout 11 - , pytestCheckHook 12 - , pythonOlder 13 - , setuptools 14 - , voluptuous 15 - , zigpy 1 + { 2 + lib, 3 + async-timeout, 4 + buildPythonPackage, 5 + click, 6 + click-log, 7 + fetchFromGitHub, 8 + pure-pcapy3, 9 + pyserial-asyncio, 10 + pytest-asyncio, 11 + pytest-timeout, 12 + pytestCheckHook, 13 + pythonOlder, 14 + setuptools, 15 + voluptuous, 16 + zigpy, 16 17 }: 17 18 18 19 buildPythonPackage rec { ··· 35 36 --replace-fail 'dynamic = ["version"]' 'version = "${version}"' 36 37 ''; 37 38 38 - build-system = [ 39 - setuptools 40 - ]; 39 + build-system = [ setuptools ]; 41 40 42 41 dependencies = [ 43 42 click ··· 46 45 pyserial-asyncio 47 46 voluptuous 48 47 zigpy 49 - ] ++ lib.optionals (pythonOlder "3.11") [ 50 - async-timeout 51 - ]; 48 + ] ++ lib.optionals (pythonOlder "3.11") [ async-timeout ]; 52 49 53 50 nativeCheckInputs = [ 54 51 pytestCheckHook ··· 56 53 pytest-timeout 57 54 ]; 58 55 59 - pythonImportsCheck = [ 60 - "bellows" 61 - ]; 56 + pythonImportsCheck = [ "bellows" ]; 62 57 63 58 meta = with lib; { 64 59 description = "Python module to implement EZSP for EmberZNet devices";