about summary refs log tree commit diff
path: root/pkgs/by-name/ha
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-05-19 11:34:20 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-05-19 11:34:43 +0200
commita148717df38668417e964c1e15ef99340fd4d4ac (patch)
treea39b88c1a3675d5ffbe513ce9c427699962609a3 /pkgs/by-name/ha
parent8019631e2cf36a40eecb5c5c723eaa2169e32d10 (diff)
ha-mqtt-discoverable-cli: 0.2.1 -> 0.4.1
Diff: https://github.com/unixorn/ha-mqtt-discoverable-cli/compare/refs/tags/v0.2.1...v0.4.1

Changelog: https://github.com/unixorn/ha-mqtt-discoverable-cli/releases/tag/v0.4.1
Diffstat (limited to 'pkgs/by-name/ha')
-rw-r--r--pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix b/pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix
index c4d79845398d2..99985f6ea2acf 100644
--- a/pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix
+++ b/pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix
@@ -5,20 +5,28 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "ha-mqtt-discoverable-cli";
-  version = "0.2.1";
+  version = "0.4.1";
   pyproject = true;
 
   src = fetchFromGitHub {
     owner = "unixorn";
     repo = "ha-mqtt-discoverable-cli";
     rev = "refs/tags/v${version}";
-    hash = "sha256-miFlrBmxVuIJjpsyYnbQt+QAGSrS4sHlJpCmxouM2Wc=";
+    hash = "sha256-rGRsB5kAtzI5KP4tMiQqLJQZs7z5k657V8Di0OzB6F8=";
   };
 
+  pythonRelaxDeps = [
+    "ha-mqtt-discoverable"
+  ];
+
   build-system = with python3.pkgs; [
     poetry-core
   ];
 
+  nativeBuildInputs = with python3.pkgs; [
+    pythonRelaxDepsHook
+  ];
+
   dependencies = with python3.pkgs; [
     ha-mqtt-discoverable
   ];