depot/third_party/nixpkgs/pkgs/development/python-modules/nibe/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

68 lines
1.2 KiB
Nix

{
lib,
aiohttp,
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.10.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "yozik04";
repo = "nibe";
rev = "refs/tags/${version}";
hash = "sha256-rm0SV48vo68aiiFcvuSSGwCvQEsagIMh2EQXXmUU5dc=";
};
build-system = [ setuptools ];
dependencies = [
async-modbus
async-timeout
construct
exceptiongroup
tenacity
];
passthru.optional-dependencies = {
convert = [
pandas
python-slugify
];
cli = [ asyncclick ];
};
nativeCheckInputs = [
aresponses
pytest-asyncio
pytestCheckHook
];
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 ];
};
}