python310Packages.aiomysensors: init at 0.3.0

This commit is contained in:
Fabian Affolter 2022-08-11 02:54:25 +02:00
parent d6417bd306
commit 29585a3638
2 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,64 @@
{ lib
, aiofiles
, asyncio-mqtt
, awesomeversion
, buildPythonPackage
, click
, fetchFromGitHub
, marshmallow
, poetry-core
, pyserial-asyncio
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "aiomysensors";
version = "0.3.0";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "MartinHjelmare";
repo = pname;
rev = "v${version}";
hash = "sha256-EGVoHEJrpGtp8OrhQhRZVaN1GhL4QCo/azp6pzgYYcs=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
aiofiles
asyncio-mqtt
awesomeversion
click
marshmallow
pyserial-asyncio
];
checkInputs = [
pytest-asyncio
pytestCheckHook
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=src --cov-report=term-missing:skip-covered" "" \
--replace 'marshmallow = "^3.17"' 'marshmallow = "*"'
'';
pythonImportsCheck = [
"aiomysensors"
];
meta = with lib; {
description = "Library to connect to MySensors gateways";
homepage = "https://github.com/MartinHjelmare/aiomysensors";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -365,6 +365,8 @@ in {
aiomusiccast = callPackage ../development/python-modules/aiomusiccast { };
aiomysensors = callPackage ../development/python-modules/aiomysensors { };
aiomysql = callPackage ../development/python-modules/aiomysql { };
aionanoleaf = callPackage ../development/python-modules/aionanoleaf { };