mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
6755f0e2bd
Diff: https://github.com/yozik04/nibe/compare/refs/tags/2.5.1...2.5.2 Changelog: https://github.com/yozik04/nibe/releases/tag/2.5.2
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, aresponses
|
|
, async-modbus
|
|
, async-timeout
|
|
, buildPythonPackage
|
|
, construct
|
|
, exceptiongroup
|
|
, fetchFromGitHub
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
, tenacity
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nibe";
|
|
version = "2.5.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yozik04";
|
|
repo = "nibe";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-qlGQtjRG92AhFY+sF3mB4ghIn4kydkbDOolLu9Qh0JM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
async-modbus
|
|
async-timeout
|
|
construct
|
|
exceptiongroup
|
|
tenacity
|
|
];
|
|
|
|
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 = with licenses; [ gpl3Plus ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|