Files
nixpkgs/pkgs/development/python-modules/nibe/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

71 lines
1.3 KiB
Nix

{
lib,
aresponses,
async-modbus,
async-timeout,
asyncclick,
buildPythonPackage,
construct,
exceptiongroup,
fetchFromGitHub,
pandas,
pytest-asyncio,
pytestCheckHook,
python-slugify,
pythonOlder,
setuptools,
tenacity,
}:
buildPythonPackage rec {
pname = "nibe";
version = "2.19.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "yozik04";
repo = "nibe";
tag = version;
hash = "sha256-1Awf/7AUSsLo9O2GrVvdlHm5Fcj2CQ7TdKY152bogfQ=";
};
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 optional-dependencies);
pythonImportsCheck = [ "nibe" ];
meta = with lib; {
description = "Library for the communication with Nibe heatpumps";
homepage = "https://github.com/yozik04/nibe";
changelog = "https://github.com/yozik04/nibe/releases/tag/${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ fab ];
};
}