python3Packages.qingping-ble: 1.0.1 -> 1.1.0 (#479842)

This commit is contained in:
Fabian Affolter
2026-01-14 13:41:38 +00:00
committed by GitHub
@@ -10,16 +10,16 @@
sensor-state-data,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "qingping-ble";
version = "1.0.1";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "bluetooth-devices";
repo = "qingping-ble";
tag = "v${version}";
hash = "sha256-YESOD2wdSD9Z7cHgzQq3Dkem0yxerOBsX9rFNEbBZfo=";
tag = "v${finalAttrs.version}";
hash = "sha256-74cTx3BSltrBUjN9qY9NBhXqKwcyitkJr+jf6jbzS+Y=";
};
build-system = [ poetry-core ];
@@ -40,8 +40,8 @@ buildPythonPackage rec {
meta = {
description = "Library for Qingping BLE devices";
homepage = "https://github.com/bluetooth-devices/qingping-ble";
changelog = "https://github.com/Bluetooth-Devices/qingping-ble/blob/v${version}/CHANGELOG.md";
changelog = "https://github.com/Bluetooth-Devices/qingping-ble/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})