Merge pull request #290434 from fabaff/oralb-ble-bump

python312Packages.oralb-ble: 0.17.6 -> 0.18.0
This commit is contained in:
Nick Cao 2024-02-21 10:08:12 -05:00 committed by GitHub
commit ea0828e99e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,5 @@
{ lib { lib
, bleak
, bleak-retry-connector , bleak-retry-connector
, bluetooth-data-tools , bluetooth-data-tools
, bluetooth-sensor-state-data , bluetooth-sensor-state-data
@ -6,29 +7,36 @@
, fetchFromGitHub , fetchFromGitHub
, home-assistant-bluetooth , home-assistant-bluetooth
, poetry-core , poetry-core
, pytest-asyncio
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "oralb-ble"; pname = "oralb-ble";
version = "0.17.6"; version = "0.18.0";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Bluetooth-Devices"; owner = "Bluetooth-Devices";
repo = pname; repo = "oralb-ble";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-6LnZ+Y68sl0uA5i764n4fFJnPeo+bAi/xgEvTK6LkXY="; hash = "sha256-e6L8HXpqOAHnEktIJ1N1atC5QXno669W3c/S7cISa48=";
}; };
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail " --cov=oralb_ble --cov-report=term-missing:skip-covered" ""
'';
nativeBuildInputs = [ nativeBuildInputs = [
poetry-core poetry-core
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
bleak
bleak-retry-connector bleak-retry-connector
bluetooth-data-tools bluetooth-data-tools
bluetooth-sensor-state-data bluetooth-sensor-state-data
@ -36,18 +44,19 @@ buildPythonPackage rec {
]; ];
nativeCheckInputs = [ nativeCheckInputs = [
pytest-asyncio
pytestCheckHook pytestCheckHook
]; ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=oralb_ble --cov-report=term-missing:skip-covered" ""
'';
pythonImportsCheck = [ pythonImportsCheck = [
"oralb_ble" "oralb_ble"
]; ];
disabledTests = [
# Test is outdated, TypeError: BLEDevice.__init__() missing 2 required...
"test_async_poll"
];
meta = with lib; { meta = with lib; {
description = "Library for Oral B BLE devices"; description = "Library for Oral B BLE devices";
homepage = "https://github.com/Bluetooth-Devices/oralb-ble"; homepage = "https://github.com/Bluetooth-Devices/oralb-ble";