depot/third_party/nixpkgs/pkgs/development/python-modules/xiaomi-ble/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

66 lines
1.5 KiB
Nix

{
lib,
bleak,
bleak-retry-connector,
bluetooth-data-tools,
bluetooth-sensor-state-data,
buildPythonPackage,
cryptography,
fetchFromGitHub,
home-assistant-bluetooth,
poetry-core,
pycryptodomex,
pytestCheckHook,
pythonOlder,
pythonRelaxDepsHook,
sensor-state-data,
}:
buildPythonPackage rec {
pname = "xiaomi-ble";
version = "0.29.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "Bluetooth-Devices";
repo = "xiaomi-ble";
rev = "refs/tags/v${version}";
hash = "sha256-+zMjnLUzI8ctucvxXts7V4lN4Gp0ZQtArhpXUCBvhF0=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail " --cov=xiaomi_ble --cov-report=term-missing:skip-covered" ""
'';
build-system = [ poetry-core ];
nativeBuildInputs = [ pythonRelaxDepsHook ];
pythonRelaxDeps = [ "pycryptodomex" ];
dependencies = [
bleak
bleak-retry-connector
bluetooth-data-tools
bluetooth-sensor-state-data
cryptography
home-assistant-bluetooth
pycryptodomex
sensor-state-data
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "xiaomi_ble" ];
meta = with lib; {
description = "Library for Xiaomi BLE devices";
homepage = "https://github.com/Bluetooth-Devices/xiaomi-ble";
changelog = "https://github.com/Bluetooth-Devices/xiaomi-ble/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}