
Diff: https://github.com/Bluetooth-Devices/bleak-retry-connector/compare/refs/tags/v4.0.0...refs/tags/v4.0.1 Changelog: https://github.com/bluetooth-devices/bleak-retry-connector/blob/v4.0.1/CHANGELOG.md
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
bleak,
|
|
bluetooth-adapters,
|
|
dbus-fast,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
pytestCheckHook,
|
|
pytest-asyncio,
|
|
pytest-cov-stub,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bleak-retry-connector";
|
|
version = "4.0.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Bluetooth-Devices";
|
|
repo = "bleak-retry-connector";
|
|
tag = "v${version}";
|
|
hash = "sha256-6x9n8DG7nyGLFCcPAEyIy3sWZ4sthgFT24/Owv0KTsQ=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
bleak
|
|
bluetooth-adapters
|
|
dbus-fast
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytest-cov-stub
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "bleak_retry_connector" ];
|
|
|
|
meta = with lib; {
|
|
description = "Connector for Bleak Clients that handles transient connection failures";
|
|
homepage = "https://github.com/bluetooth-devices/bleak-retry-connector";
|
|
changelog = "https://github.com/bluetooth-devices/bleak-retry-connector/blob/${src.tag}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|