python3Packages.pyitachip2ir2: init at 0.0.8

This commit is contained in:
Jamie Magee
2026-07-09 10:24:12 -07:00
parent 540275ac4f
commit 34ab7ca8e6
2 changed files with 33 additions and 0 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 ];
};
})
+2
View File
@@ -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 { };