python3Packages.pyitachip2ir: init at 0.0.7 (#432451)

This commit is contained in:
Martin Weinelt
2025-08-10 15:09:49 +02:00
committed by GitHub
3 changed files with 35 additions and 1 deletions
@@ -0,0 +1,31 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "pyitachip2ir";
version = "0.0.7";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-T/Q3tZTTwqlaHDR2l2nRLISC4LLrOPZZv14sRxYyqDQ=";
};
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 ];
};
}
@@ -2836,7 +2836,8 @@
];
"itach" =
ps: with ps; [
]; # missing inputs: pyitachip2ir
pyitachip2ir
];
"itunes" =
ps: with ps; [
];
+2
View File
@@ -13044,6 +13044,8 @@ self: super: with self; {
pyisy = callPackage ../development/python-modules/pyisy { };
pyitachip2ir = callPackage ../development/python-modules/pyitachip2ir { };
pyituran = callPackage ../development/python-modules/pyituran { };
pyixapi = callPackage ../development/python-modules/pyixapi { };