Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

59 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
# build-system
poetry-core,
setuptools,
# dependencies
habluetooth,
# tests
bleak,
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "home-assistant-bluetooth";
version = "2.0.0";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "home-assistant-bluetooth";
tag = "v${version}";
hash = "sha256-A29Jezj9kQ/v4irvpcpCiZlrNQBQwByrSJOx4HaXTdc=";
};
build-system = [
poetry-core
setuptools
];
dependencies = [ habluetooth ];
doCheck = false; # broken with habluetooth>=4.0
nativeCheckInputs = [
bleak
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "home_assistant_bluetooth" ];
meta = {
description = "Basic bluetooth models used by Home Assistant";
changelog = "https://github.com/home-assistant-libs/home-assistant-bluetooth/blob/${src.tag}/CHANGELOG.md";
homepage = "https://github.com/home-assistant-libs/home-assistant-bluetooth";
license = lib.licenses.asl20;
teams = [ lib.teams.home-assistant ];
};
}