Files
2026-07-09 07:15:01 -07:00

50 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
bluetooth-data-tools,
bluetooth-sensor-state-data,
home-assistant-bluetooth,
sensor-state-data,
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "chefiq-ble";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Invader444";
repo = "chefiq-ble";
tag = "v${finalAttrs.version}";
hash = "sha256-aC0v3KtZEnEz90kJPxx0euUM/h6NzLnvI9WggImYQ5c=";
};
build-system = [ hatchling ];
dependencies = [
bluetooth-data-tools
bluetooth-sensor-state-data
home-assistant-bluetooth
sensor-state-data
];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "chefiq_ble" ];
meta = {
description = "Passive BLE advertisement parser for Chef iQ wireless probes (CQ50/CQ60)";
homepage = "https://github.com/Invader444/chefiq-ble";
changelog = "https://github.com/Invader444/chefiq-ble/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})