bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
65 lines
1.3 KiB
Nix
65 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
async-interrupt,
|
|
bleak,
|
|
bleak-retry-connector,
|
|
bluetooth-adapters,
|
|
bluetooth-auto-recovery,
|
|
bluetooth-data-tools,
|
|
buildPythonPackage,
|
|
cython,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
wheel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "habluetooth";
|
|
version = "3.1.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Bluetooth-Devices";
|
|
repo = "habluetooth";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-HlQAYR+feu1awKFf11Q5Us4zSeHASu8OscJ8T8tlm5M=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail " --cov=habluetooth --cov-report=term-missing:skip-covered" ""
|
|
'';
|
|
|
|
build-system = [
|
|
cython
|
|
poetry-core
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
dependencies = [
|
|
async-interrupt
|
|
bleak
|
|
bleak-retry-connector
|
|
bluetooth-adapters
|
|
bluetooth-auto-recovery
|
|
bluetooth-data-tools
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "habluetooth" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library for high availability Bluetooth";
|
|
homepage = "https://github.com/Bluetooth-Devices/habluetooth";
|
|
changelog = "https://github.com/Bluetooth-Devices/habluetooth/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|