depot/third_party/nixpkgs/pkgs/development/python-modules/home-assistant-bluetooth/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

66 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
# build-system
cython,
poetry-core,
setuptools,
# dependencies
habluetooth,
# tests
bleak,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "home-assistant-bluetooth";
version = "1.12.0";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "home-assistant-bluetooth";
rev = "refs/tags/v${version}";
hash = "sha256-KTaZ3xbZpBIN5zP73YdJW6QeCQThGdqejnfWwvL+0R8=";
};
patches = [
# https://github.com/home-assistant-libs/home-assistant-bluetooth/issues/38
./habluetooth-3.0-compat.patch
];
postPatch = ''
# drop pytest parametrization (coverage, etc.)
sed -i '/addopts/d' pyproject.toml
'';
nativeBuildInputs = [
cython
poetry-core
setuptools
];
propagatedBuildInputs = [ habluetooth ];
pythonImportsCheck = [ "home_assistant_bluetooth" ];
nativeCheckInputs = [
bleak
pytestCheckHook
];
meta = with lib; {
description = "Basic bluetooth models used by Home Assistant";
changelog = "https://github.com/home-assistant-libs/home-assistant-bluetooth/blob/v${version}/CHANGELOG.md";
homepage = "https://github.com/home-assistant-libs/home-assistant-bluetooth";
license = licenses.asl20;
maintainers = teams.home-assistant.members;
};
}