lol

python312Packages.ha-mqtt-discoverable: 0.13.1 -> 0.14.0

Diff: https://github.com/unixorn/ha-mqtt-discoverable/compare/refs/tags/v0.13.1...v0.14.0

Changelog: https://github.com/unixorn/ha-mqtt-discoverable/releases/tag/v0.14.0

+13 -5
+13 -5
pkgs/development/python-modules/ha-mqtt-discoverable/default.nix
··· 7 7 , pyaml 8 8 , pydantic 9 9 , pythonOlder 10 + , pythonRelaxDepsHook 10 11 , thelogrus 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "ha-mqtt-discoverable"; 15 - version = "0.13.1"; 16 + version = "0.14.0"; 16 17 pyproject = true; 17 18 18 19 disabled = pythonOlder "3.10"; ··· 21 22 owner = "unixorn"; 22 23 repo = "ha-mqtt-discoverable"; 23 24 rev = "refs/tags/v${version}"; 24 - hash = "sha256-Ue8az6Q7uU02IJJyyHk64Ji4J6sf/bShvTeHhN9U92Y="; 25 + hash = "sha256-vL4EzeU+8nUPyLR22MJtLhknWF4DWMo49EKvkIqIWhA="; 25 26 }; 26 27 27 - nativeBuildInputs = [ 28 + pythonRelaxDeps = [ 29 + "pyaml" 30 + ]; 31 + 32 + build-system = [ 28 33 poetry-core 29 34 ]; 30 35 31 - propagatedBuildInputs = [ 36 + nativeBuildInputs = [ 37 + pythonRelaxDepsHook 38 + ]; 39 + 40 + dependencies = [ 32 41 gitlike-commands 33 42 paho-mqtt 34 43 pyaml ··· 49 58 changelog = "https://github.com/unixorn/ha-mqtt-discoverable/releases/tag/v${version}"; 50 59 license = licenses.asl20; 51 60 maintainers = with maintainers; [ fab ]; 52 - broken = versionAtLeast pydantic.version "2"; 53 61 }; 54 62 }