f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
69 lines
1.4 KiB
Nix
69 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
async-interrupt,
|
|
bleak,
|
|
bleak-retry-connector,
|
|
bluetooth-adapters,
|
|
bluetooth-auto-recovery,
|
|
bluetooth-data-tools,
|
|
buildPythonPackage,
|
|
cython,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
wheel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "habluetooth";
|
|
version = "3.1.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Bluetooth-Devices";
|
|
repo = "habluetooth";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-HG2G/ymSw6e03KJOB/F5ja2Cv5nD+nPgOjMHPCYNSH8=";
|
|
};
|
|
|
|
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 = [
|
|
pytest-asyncio
|
|
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 ];
|
|
};
|
|
}
|