depot/third_party/nixpkgs/pkgs/development/python-modules/habluetooth/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

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 ];
};
}