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 16 }: 17 18 buildPythonPackage rec { ··· 35 --replace-fail 'dynamic = ["version"]' 'version = "${version}"' 36 ''; 37 38 - build-system = [ 39 - setuptools 40 - ]; 41 42 dependencies = [ 43 click ··· 46 pyserial-asyncio 47 voluptuous 48 zigpy 49 - ] ++ lib.optionals (pythonOlder "3.11") [ 50 - async-timeout 51 - ]; 52 53 nativeCheckInputs = [ 54 pytestCheckHook ··· 56 pytest-timeout 57 ]; 58 59 - pythonImportsCheck = [ 60 - "bellows" 61 - ]; 62 63 meta = with lib; { 64 description = "Python module to implement EZSP for EmberZNet devices";
··· 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, 17 }: 18 19 buildPythonPackage rec { ··· 36 --replace-fail 'dynamic = ["version"]' 'version = "${version}"' 37 ''; 38 39 + build-system = [ setuptools ]; 40 41 dependencies = [ 42 click ··· 45 pyserial-asyncio 46 voluptuous 47 zigpy 48 + ] ++ lib.optionals (pythonOlder "3.11") [ async-timeout ]; 49 50 nativeCheckInputs = [ 51 pytestCheckHook ··· 53 pytest-timeout 54 ]; 55 56 + pythonImportsCheck = [ "bellows" ]; 57 58 meta = with lib; { 59 description = "Python module to implement EZSP for EmberZNet devices";