python3Packages.airthings-ble: 1.1.1 -> 1.2.0

Diff: https://github.com/vincegio/airthings-ble/compare/1.1.1...1.2.0

Changelog: https://github.com/vincegio/airthings-ble/releases/tag/1.2.0
This commit is contained in:
Robert Schütz
2025-10-31 20:46:59 -07:00
parent 4b484d1c96
commit f1c4541375

View File

@@ -9,27 +9,30 @@
poetry-core, poetry-core,
pytest-cov-stub, pytest-cov-stub,
pytestCheckHook, pytestCheckHook,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "airthings-ble"; pname = "airthings-ble";
version = "1.1.1"; version = "1.2.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "vincegio"; owner = "vincegio";
repo = "airthings-ble"; repo = "airthings-ble";
tag = version; tag = version;
hash = "sha256-fZvmgRQuSrgraj6e3BtsoKyFX38BedqVh6cHsliT9ns="; hash = "sha256-y6vpkq3u5JKImwxevMupUVVAclUcsyrqxoIOYRK0YGQ=";
}; };
build-system = [ poetry-core ]; build-system = [ poetry-core ];
dependencies = [ dependencies = [
async-interrupt async-interrupt
bleak
bleak-retry-connector bleak-retry-connector
cbor2 cbor2
]
++ lib.optionals (pythonOlder "3.14") [
bleak
]; ];
nativeCheckInputs = [ nativeCheckInputs = [