Commit 8b0b0e29 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent a03b29ba
Loading
Loading
Loading
Loading
+13 −5
Original line number Diff line number Diff line
@@ -7,12 +7,13 @@
, pyaml
, pydantic
, pythonOlder
, pythonRelaxDepsHook
, thelogrus
}:

buildPythonPackage rec {
  pname = "ha-mqtt-discoverable";
  version = "0.13.1";
  version = "0.14.0";
  pyproject = true;

  disabled = pythonOlder "3.10";
@@ -21,14 +22,22 @@ buildPythonPackage rec {
    owner = "unixorn";
    repo = "ha-mqtt-discoverable";
    rev = "refs/tags/v${version}";
    hash = "sha256-Ue8az6Q7uU02IJJyyHk64Ji4J6sf/bShvTeHhN9U92Y=";
    hash = "sha256-vL4EzeU+8nUPyLR22MJtLhknWF4DWMo49EKvkIqIWhA=";
  };

  nativeBuildInputs = [
  pythonRelaxDeps = [
    "pyaml"
  ];

  build-system = [
    poetry-core
  ];

  propagatedBuildInputs = [
  nativeBuildInputs = [
    pythonRelaxDepsHook
  ];

  dependencies = [
    gitlike-commands
    paho-mqtt
    pyaml
@@ -49,6 +58,5 @@ buildPythonPackage rec {
    changelog = "https://github.com/unixorn/ha-mqtt-discoverable/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
    broken = versionAtLeast pydantic.version "2";
  };
}