mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
python3Packages.bleak-retry-connector: 4.6.0 -> 4.6.1
Diff: https://github.com/Bluetooth-Devices/bleak-retry-connector/compare/v4.6.0...v4.6.1 Changelog: https://github.com/Bluetooth-Devices/bleak-retry-connector/releases/tag/v4.6.1
This commit is contained in:
committed by
Martin Weinelt
parent
d21c6d1773
commit
ff965afec7
@@ -1,27 +1,28 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
bleak,
|
||||
blockbuster,
|
||||
bluetooth-adapters,
|
||||
dbus-fast,
|
||||
buildPythonPackage,
|
||||
dbus-fast,
|
||||
fetchFromGitHub,
|
||||
poetry-core,
|
||||
pytestCheckHook,
|
||||
pytest-asyncio,
|
||||
pytest-cov-stub,
|
||||
stdenv,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "bleak-retry-connector";
|
||||
version = "4.6.0";
|
||||
version = "4.6.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Bluetooth-Devices";
|
||||
repo = "bleak-retry-connector";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-wUfIP0UHL60AAq38j4Kc2enTccdhT7aaSrXWJ1y5+7I=";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-SGQ+9HjD6VhxZwmjh1K/EHbUIFE/bbtLBwmauU/IEJM=";
|
||||
};
|
||||
|
||||
build-system = [ poetry-core ];
|
||||
@@ -35,6 +36,7 @@ buildPythonPackage rec {
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
blockbuster
|
||||
pytest-asyncio
|
||||
pytest-cov-stub
|
||||
pytestCheckHook
|
||||
@@ -48,8 +50,8 @@ buildPythonPackage rec {
|
||||
meta = {
|
||||
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/releases/tag/${src.tag}";
|
||||
changelog = "https://github.com/Bluetooth-Devices/bleak-retry-connector/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user