python3Packages.pyenvertechevt800: init at 0.2.4 (#540044)

This commit is contained in:
Martin Weinelt
2026-07-15 22:45:04 +00:00
committed by GitHub
3 changed files with 43 additions and 1 deletions
@@ -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 ];
};
})
@@ -1727,7 +1727,8 @@
];
"envertech_evt800" =
ps: with ps; [
]; # missing inputs: pyenvertechevt800
pyenvertechevt800
];
"environment_canada" =
ps: with ps; [
env-canada
@@ -8032,6 +8033,7 @@
"enigma2"
"enocean"
"enphase_envoy"
"envertech_evt800"
"environment_canada"
"envisalink"
"epic_games_store"
+2
View File
@@ -14495,6 +14495,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 { };