From 34ab7ca8e670e23f45ca61389e7f2030006d1b08 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Thu, 9 Jul 2026 10:24:12 -0700 Subject: [PATCH 1/2] python3Packages.pyitachip2ir2: init at 0.0.8 --- .../python-modules/pyitachip2ir2/default.nix | 31 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/development/python-modules/pyitachip2ir2/default.nix diff --git a/pkgs/development/python-modules/pyitachip2ir2/default.nix b/pkgs/development/python-modules/pyitachip2ir2/default.nix new file mode 100644 index 000000000000..2d8b779390f2 --- /dev/null +++ b/pkgs/development/python-modules/pyitachip2ir2/default.nix @@ -0,0 +1,31 @@ +{ + lib, + buildPythonPackage, + fetchPypi, + setuptools, +}: + +buildPythonPackage (finalAttrs: { + pname = "pyitachip2ir2"; + version = "0.0.8"; + pyproject = true; + + src = fetchPypi { + inherit (finalAttrs) pname version; + hash = "sha256-QBBajL3UCVPrIMmff9L//gGsHF0WDRnbfc8hV1tWMxE="; + }; + + build-system = [ setuptools ]; + + # Package has no tests + doCheck = false; + + pythonImportsCheck = [ "pyitachip2ir" ]; + + meta = { + description = "Library for sending IR commands to an ITach IP2IR gateway"; + homepage = "https://github.com/alanfischer/itachip2ir"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.jamiemagee ]; + }; +}) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e3604c024a57..4e20feffe61e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14786,6 +14786,8 @@ self: super: with self; { pyitachip2ir = callPackage ../development/python-modules/pyitachip2ir { }; + pyitachip2ir2 = callPackage ../development/python-modules/pyitachip2ir2 { }; + pyituran = callPackage ../development/python-modules/pyituran { }; pyixapi = callPackage ../development/python-modules/pyixapi { }; From 0d80ab07c0a5115fd33e3437ccf5e0152025e361 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Thu, 9 Jul 2026 10:25:26 -0700 Subject: [PATCH 2/2] home-assistant: update component packages --- pkgs/servers/home-assistant/component-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix index faa30054e360..981f557abbce 100644 --- a/pkgs/servers/home-assistant/component-packages.nix +++ b/pkgs/servers/home-assistant/component-packages.nix @@ -3241,7 +3241,8 @@ ]; "itach" = ps: with ps; [ - ]; # missing inputs: pyitachip2ir2 + pyitachip2ir2 + ]; "itunes" = ps: with ps; [ ]; @@ -8257,6 +8258,7 @@ "iss" "ista_ecotrend" "isy994" + "itach" "ituran" "izone" "jellyfin"