{ buildPythonPackage, fetchFromGitHub, lib, pytestCheckHook, setuptools, }: buildPythonPackage (finalAttrs: { pname = "infrared-protocols"; version = "6.3.1"; pyproject = true; src = fetchFromGitHub { owner = "home-assistant-libs"; repo = "infrared-protocols"; tag = finalAttrs.version; hash = "sha256-6kyb0a0cCwVSS4evDGg0Z7wLGhDUHnLeXUJ9PW+fhHk="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace-fail "setuptools>=78.1.1,<83.0" setuptools ''; build-system = [ setuptools ]; pythonImportsCheck = [ "infrared_protocols" ]; nativeCheckInputs = [ pytestCheckHook ]; meta = { changelog = "https://github.com/home-assistant-libs/infrared-protocols/releases/tag/${finalAttrs.src.tag}"; description = "Library to decode and encode infrared signals"; homepage = "https://github.com/home-assistant-libs/infrared-protocols"; license = lib.licenses.mit; maintainers = [ lib.maintainers.dotlambda ]; }; })