lol

python312Packages.ha-mqtt-discoverable: format with nixfmt

+16 -23
+16 -23
pkgs/development/python-modules/ha-mqtt-discoverable/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , gitlike-commands 5 - , paho-mqtt 6 - , poetry-core 7 - , pyaml 8 - , pydantic 9 - , pythonOlder 10 - , pythonRelaxDepsHook 11 - , thelogrus 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + gitlike-commands, 6 + paho-mqtt, 7 + poetry-core, 8 + pyaml, 9 + pydantic, 10 + pythonOlder, 11 + pythonRelaxDepsHook, 12 + thelogrus, 12 13 }: 13 14 14 15 buildPythonPackage rec { ··· 25 26 hash = "sha256-vL4EzeU+8nUPyLR22MJtLhknWF4DWMo49EKvkIqIWhA="; 26 27 }; 27 28 28 - pythonRelaxDeps = [ 29 - "pyaml" 30 - ]; 29 + pythonRelaxDeps = [ "pyaml" ]; 31 30 32 - build-system = [ 33 - poetry-core 34 - ]; 31 + build-system = [ poetry-core ]; 35 32 36 - nativeBuildInputs = [ 37 - pythonRelaxDepsHook 38 - ]; 33 + nativeBuildInputs = [ pythonRelaxDepsHook ]; 39 34 40 35 dependencies = [ 41 36 gitlike-commands ··· 48 43 # Test require a running Mosquitto instance 49 44 doCheck = false; 50 45 51 - pythonImportsCheck = [ 52 - "ha_mqtt_discoverable" 53 - ]; 46 + pythonImportsCheck = [ "ha_mqtt_discoverable" ]; 54 47 55 48 meta = with lib; { 56 49 description = "Python module to create MQTT entities that are automatically discovered by Home Assistant";