python3Packages.tami4edgeapi: init at 3.0

This commit is contained in:
Jamie Magee
2025-08-09 19:56:57 -07:00
parent 7d055ef5ca
commit 4c899f0a79
2 changed files with 48 additions and 0 deletions
@@ -0,0 +1,46 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pyjwt,
pypasser,
requests,
pythonOlder,
}:
buildPythonPackage rec {
pname = "tami4edgeapi";
version = "3.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Guy293";
repo = "Tami4EdgeAPI";
tag = "v${version}";
hash = "sha256-rhJ8L6qLDnO50Xp2eqquRinDTQjMxWVSjNL5GQI1gvM=";
};
build-system = [ setuptools ];
dependencies = [
pyjwt
pypasser
requests
];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "Tami4EdgeAPI" ];
meta = {
description = "Python API client for Tami4 Edge / Edge+ devices";
homepage = "https://github.com/Guy293/Tami4EdgeAPI";
changelog = "https://github.com/Guy293/Tami4EdgeAPI/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -17670,6 +17670,8 @@ self: super: with self; {
takethetime = callPackage ../development/python-modules/takethetime { };
tami4edgeapi = callPackage ../development/python-modules/tami4edgeapi { };
tank-utility = callPackage ../development/python-modules/tank-utility { };
tappy = callPackage ../development/python-modules/tappy { };