python3Packages.pyitachip2ir2: init at 0.0.8 (#540064)

This commit is contained in:
Martin Weinelt
2026-07-15 22:48:05 +00:00
committed by GitHub
3 changed files with 36 additions and 1 deletions
@@ -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 ];
};
})
@@ -3245,7 +3245,8 @@
];
"itach" =
ps: with ps; [
]; # missing inputs: pyitachip2ir2
pyitachip2ir2
];
"itunes" =
ps: with ps; [
];
@@ -8265,6 +8266,7 @@
"iss"
"ista_ecotrend"
"isy994"
"itach"
"ituran"
"izone"
"jellyfin"
+2
View File
@@ -14819,6 +14819,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 { };