Files
nixpkgs/pkgs/development/python-modules/denon-rs232/default.nix
2026-05-19 07:15:06 +00:00

53 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytest-asyncio,
pytest-timeout,
pytestCheckHook,
pythonOlder,
serialx,
uv-build,
}:
buildPythonPackage (finalAttrs: {
pname = "denon-rs232";
version = "4.2.0";
pyproject = true;
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "denon-rs232";
tag = finalAttrs.version;
hash = "sha256-1GVpF4aOQ8Zzu/abghRF8WJXF+9DP+1suA0F3hy8NSo=";
};
build-system = [ uv-build ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'version = "0.0.0"' 'version = "${finalAttrs.version}"' \
--replace-fail '"uv_build>=0.8.4,<0.9.0"' '"uv_build>=0.8.4"'
'';
dependencies = [ serialx ];
nativeCheckInputs = [
pytest-asyncio
pytest-timeout
pytestCheckHook
];
pythonImportsCheck = [ "denon_rs232" ];
meta = {
description = "Async library to control Denon receivers over RS232";
homepage = "https://github.com/home-assistant-libs/denon-rs232";
changelog = "https://github.com/home-assistant-libs/denon-rs232/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})