python3Packages.pyenvertechevt800: init at 0.2.4

This commit is contained in:
Jamie Magee
2026-07-09 09:11:00 -07:00
parent 141122859d
commit 9c010484f7
2 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytest-asyncio,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "pyenvertechevt800";
version = "0.2.4";
pyproject = true;
src = fetchFromGitHub {
owner = "daniel-bergmann-00";
repo = "pyenvertech-evt800";
tag = "v${finalAttrs.version}";
hash = "sha256-JUXPyBnmwcKtGk2PjhKAaPZXnvl8Vkx9hrb7NurGvHo=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "pyenvertechevt800" ];
meta = {
description = "Library to interface an Envertech EVT-800 device";
homepage = "https://github.com/daniel-bergmann-00/pyenvertech-evt800";
changelog = "https://github.com/daniel-bergmann-00/pyenvertech-evt800/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})

View File

@@ -14468,6 +14468,8 @@ self: super: with self; {
pyenphase = callPackage ../development/python-modules/pyenphase { };
pyenvertechevt800 = callPackage ../development/python-modules/pyenvertechevt800 { };
pyenvisalink = callPackage ../development/python-modules/pyenvisalink { };
pyephember2 = callPackage ../development/python-modules/pyephember2 { };