python310Packages.bthome-ble: 2.12.0 -> 3.0.0

https://github.com/bluetooth-devices/bthome-ble/blob/v3.0.0/CHANGELOG.md
This commit is contained in:
Martin Weinelt 2023-08-02 19:55:59 +02:00
parent 49a5e79a98
commit c4dac0a921
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -2,9 +2,9 @@
, bluetooth-data-tools
, bluetooth-sensor-state-data
, buildPythonPackage
, cryptography
, fetchFromGitHub
, poetry-core
, pycryptodomex
, pytestCheckHook
, pythonOlder
, pytz
@ -13,16 +13,16 @@
buildPythonPackage rec {
pname = "bthome-ble";
version = "2.12.0";
version = "3.0.0";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "Bluetooth-Devices";
repo = pname;
repo = "bthome-ble";
rev = "refs/tags/v${version}";
hash = "sha256-SonB0pT6sC6kpFmIMzNeASUHyuik4HOOquWx6+K05Y8=";
hash = "sha256-dLXeJojGeiwPPxXES1qzay1kC/YiI6pKyxKD2z32Av8=";
};
nativeBuildInputs = [
@ -32,8 +32,8 @@ buildPythonPackage rec {
propagatedBuildInputs = [
bluetooth-data-tools
bluetooth-sensor-state-data
cryptography
sensor-state-data
pycryptodomex
pytz
];