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