Merge pull request #321754 from fabaff/airgradient

This commit is contained in:
Sandro 2024-07-10 16:15:25 +02:00 committed by GitHub
commit 0847aeb2fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 66 additions and 1 deletions

View File

@ -0,0 +1,61 @@
{
lib,
aiohttp,
aioresponses,
buildPythonPackage,
fetchFromGitHub,
mashumaro,
orjson,
poetry-core,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
syrupy,
yarl,
}:
buildPythonPackage rec {
pname = "airgradient";
version = "0.6.1";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "airgradienthq";
repo = "python-airgradient";
rev = "refs/tags/v${version}";
hash = "sha256-1f5sFpuQgmmAFKdunpuuDuKm9CK1K8iXBV/q2qJoe/o=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "--cov" ""
'';
build-system = [ poetry-core ];
dependencies = [
aiohttp
mashumaro
orjson
yarl
];
nativeCheckInputs = [
aioresponses
pytest-asyncio
pytestCheckHook
syrupy
];
pythonImportsCheck = [ "airgradient" ];
meta = with lib; {
description = "Module for AirGradient";
homepage = "https://github.com/airgradienthq/python-airgradient";
changelog = "https://github.com/airgradienthq/python-airgradient/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -51,7 +51,8 @@
"air_quality" = ps: with ps; [
];
"airgradient" = ps: with ps; [
]; # missing inputs: airgradient
airgradient
];
"airly" = ps: with ps; [
airly
];
@ -5230,6 +5231,7 @@
"aftership"
"agent_dvr"
"air_quality"
"airgradient"
"airly"
"airnow"
"airq"

View File

@ -465,6 +465,8 @@ self: super: with self; {
aiozoneinfo = callPackage ../development/python-modules/aiozoneinfo { };
airgradient = callPackage ../development/python-modules/airgradient { };
airium = callPackage ../development/python-modules/airium { };
airly = callPackage ../development/python-modules/airly { };