python3Packages.energyid-webhooks: init at 0.0.14

This commit is contained in:
Robert Schütz
2025-12-03 10:39:10 -08:00
parent ff5d4dfb67
commit bf45076b9d
2 changed files with 48 additions and 0 deletions
@@ -0,0 +1,46 @@
{
aiohttp,
backoff,
buildPythonPackage,
fetchFromGitHub,
lib,
requests,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "energyid-webhooks";
version = "0.0.14";
pyproject = true;
src = fetchFromGitHub {
owner = "EnergieID";
repo = "energyid-webhooks-py";
tag = "v${version}";
hash = "sha256-43JfRBtRoERHYkhXjslxjohm8ypzgObRBmzbEwuzu7M=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
aiohttp
backoff
requests
];
pythonImportsCheck = [ "energyid_webhooks" ];
# upstream has no tests
doCheck = false;
meta = {
description = "Light weight Python package to interface with EnergyID Webhooks";
homepage = "https://github.com/EnergieID/energyid-webhooks-py";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
};
}
+2
View File
@@ -4857,6 +4857,8 @@ self: super: with self; {
energyflow = callPackage ../development/python-modules/energyflow { };
energyid-webhooks = callPackage ../development/python-modules/energyid-webhooks { };
energyzero = callPackage ../development/python-modules/energyzero { };
enlighten = callPackage ../development/python-modules/enlighten { };