lol

Merge pull request #309490 from fabaff/xiaomi-ble-bump

python312Packages.xiaomi-ble: 0.28.0 -> 0.29.0

authored by

Nick Cao and committed by
GitHub
3d859c15 975878ff

+24 -30
+24 -30
pkgs/development/python-modules/xiaomi-ble/default.nix
··· 1 - { lib 2 - , bleak 3 - , bleak-retry-connector 4 - , bluetooth-data-tools 5 - , bluetooth-sensor-state-data 6 - , buildPythonPackage 7 - , cryptography 8 - , fetchFromGitHub 9 - , home-assistant-bluetooth 10 - , poetry-core 11 - , pycryptodomex 12 - , pytestCheckHook 13 - , pythonOlder 14 - , pythonRelaxDepsHook 15 - , sensor-state-data 1 + { 2 + lib, 3 + bleak, 4 + bleak-retry-connector, 5 + bluetooth-data-tools, 6 + bluetooth-sensor-state-data, 7 + buildPythonPackage, 8 + cryptography, 9 + fetchFromGitHub, 10 + home-assistant-bluetooth, 11 + poetry-core, 12 + pycryptodomex, 13 + pytestCheckHook, 14 + pythonOlder, 15 + pythonRelaxDepsHook, 16 + sensor-state-data, 16 17 }: 17 18 18 19 buildPythonPackage rec { 19 20 pname = "xiaomi-ble"; 20 - version = "0.28.0"; 21 + version = "0.29.0"; 21 22 pyproject = true; 22 23 23 24 disabled = pythonOlder "3.9"; ··· 26 27 owner = "Bluetooth-Devices"; 27 28 repo = "xiaomi-ble"; 28 29 rev = "refs/tags/v${version}"; 29 - hash = "sha256-Va/fzGDjBR/h1lUN47AixZnDYzEPNXQKTVXILKayhBc="; 30 + hash = "sha256-+zMjnLUzI8ctucvxXts7V4lN4Gp0ZQtArhpXUCBvhF0="; 30 31 }; 31 32 32 33 postPatch = '' ··· 34 35 --replace-fail " --cov=xiaomi_ble --cov-report=term-missing:skip-covered" "" 35 36 ''; 36 37 37 - build-system = [ 38 - poetry-core 39 - pythonRelaxDepsHook 40 - ]; 38 + build-system = [ poetry-core ]; 39 + 40 + nativeBuildInputs = [ pythonRelaxDepsHook ]; 41 41 42 - pythonRelaxDeps = [ 43 - "pycryptodomex" 44 - ]; 42 + pythonRelaxDeps = [ "pycryptodomex" ]; 45 43 46 44 dependencies = [ 47 45 bleak ··· 54 52 sensor-state-data 55 53 ]; 56 54 57 - nativeCheckInputs = [ 58 - pytestCheckHook 59 - ]; 55 + nativeCheckInputs = [ pytestCheckHook ]; 60 56 61 - pythonImportsCheck = [ 62 - "xiaomi_ble" 63 - ]; 57 + pythonImportsCheck = [ "xiaomi_ble" ]; 64 58 65 59 meta = with lib; { 66 60 description = "Library for Xiaomi BLE devices";