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 12 }: 13 14 buildPythonPackage rec { ··· 25 hash = "sha256-vL4EzeU+8nUPyLR22MJtLhknWF4DWMo49EKvkIqIWhA="; 26 }; 27 28 - pythonRelaxDeps = [ 29 - "pyaml" 30 - ]; 31 32 - build-system = [ 33 - poetry-core 34 - ]; 35 36 - nativeBuildInputs = [ 37 - pythonRelaxDepsHook 38 - ]; 39 40 dependencies = [ 41 gitlike-commands ··· 48 # Test require a running Mosquitto instance 49 doCheck = false; 50 51 - pythonImportsCheck = [ 52 - "ha_mqtt_discoverable" 53 - ]; 54 55 meta = with lib; { 56 description = "Python module to create MQTT entities that are automatically discovered by Home Assistant";
··· 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, 13 }: 14 15 buildPythonPackage rec { ··· 26 hash = "sha256-vL4EzeU+8nUPyLR22MJtLhknWF4DWMo49EKvkIqIWhA="; 27 }; 28 29 + pythonRelaxDeps = [ "pyaml" ]; 30 31 + build-system = [ poetry-core ]; 32 33 + nativeBuildInputs = [ pythonRelaxDepsHook ]; 34 35 dependencies = [ 36 gitlike-commands ··· 43 # Test require a running Mosquitto instance 44 doCheck = false; 45 46 + pythonImportsCheck = [ "ha_mqtt_discoverable" ]; 47 48 meta = with lib; { 49 description = "Python module to create MQTT entities that are automatically discovered by Home Assistant";