Merge pull request #321754 from fabaff/airgradient
This commit is contained in:
commit
0847aeb2fe
61
pkgs/development/python-modules/airgradient/default.nix
Normal file
61
pkgs/development/python-modules/airgradient/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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"
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user