Files
nixpkgs/pkgs/development/python-modules/infrared-protocols/default.nix

37 lines
880 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
lib,
pytestCheckHook,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "infrared-protocols";
version = "2.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "infrared-protocols";
tag = finalAttrs.version;
hash = "sha256-TAeqDCuLSuzAOq2bsHTMYjQ1AyKDRQSAq8cC8oSfY1E=";
};
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 ];
};
})