python3Packages.ha-garmin: init at 0.1.19

This commit is contained in:
Jamie Magee
2026-05-11 08:58:00 -07:00
parent 4f90e32d9c
commit 6feb747491
2 changed files with 54 additions and 0 deletions
@@ -0,0 +1,52 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
curl-cffi,
pydantic,
pytest-asyncio,
pytestCheckHook,
requests,
}:
buildPythonPackage (finalAttrs: {
pname = "ha-garmin";
version = "0.1.19";
pyproject = true;
src = fetchFromGitHub {
owner = "cyberjunky";
repo = "ha-garmin";
tag = "v${finalAttrs.version}";
hash = "sha256-vzr32vuAVafdx64Fmv257gS2a+ZbfwZNwwuF5NPQbS0=";
};
build-system = [ setuptools ];
dependencies = [
curl-cffi
pydantic
requests
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
disabledTests = [
# Upstream test relies on a field not present in the test fixture
"test_fetch_core_data_sleep_fields"
];
pythonImportsCheck = [ "ha_garmin" ];
meta = {
description = "Python client for Garmin Connect API, designed for Home Assistant integration";
homepage = "https://github.com/cyberjunky/ha-garmin";
changelog = "https://github.com/cyberjunky/ha-garmin/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})
+2
View File
@@ -6897,6 +6897,8 @@ self: super: with self; {
ha-ffmpeg = callPackage ../development/python-modules/ha-ffmpeg { };
ha-garmin = callPackage ../development/python-modules/ha-garmin { };
ha-iotawattpy = callPackage ../development/python-modules/ha-iotawattpy { };
ha-mqtt-discoverable = callPackage ../development/python-modules/ha-mqtt-discoverable { };