Files
nixpkgs/pkgs/development/python-modules/nibe/default.nix
T
2026-01-29 22:15:25 +01:00

68 lines
1.3 KiB
Nix

{
lib,
aresponses,
async-modbus,
async-timeout,
asyncclick,
buildPythonPackage,
construct,
exceptiongroup,
fetchFromGitHub,
pandas,
pytest-asyncio,
pytestCheckHook,
python-slugify,
setuptools,
tenacity,
}:
buildPythonPackage (finalAttrs: {
pname = "nibe";
version = "2.22.0";
pyproject = true;
src = fetchFromGitHub {
owner = "yozik04";
repo = "nibe";
tag = finalAttrs.version;
hash = "sha256-mbLasfHPPrZvL+PheMutqvIiyQQoew7dGIPGekuk0Oo=";
};
pythonRelaxDeps = [ "async-modbus" ];
build-system = [ setuptools ];
dependencies = [
async-modbus
async-timeout
construct
exceptiongroup
tenacity
];
optional-dependencies = {
convert = [
pandas
python-slugify
];
cli = [ asyncclick ];
};
nativeCheckInputs = [
aresponses
pytest-asyncio
pytestCheckHook
]
++ lib.flatten (builtins.attrValues finalAttrs.passthru.optional-dependencies);
pythonImportsCheck = [ "nibe" ];
meta = {
description = "Library for the communication with Nibe heatpumps";
homepage = "https://github.com/yozik04/nibe";
changelog = "https://github.com/yozik04/nibe/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ fab ];
};
})