python3Packages.tellcore-net: init at 0.4

This commit is contained in:
Jamie Magee
2025-08-28 20:18:20 -07:00
parent f712b4ca61
commit 430ca53b6e
2 changed files with 36 additions and 0 deletions
@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "tellcore-net";
version = "0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "tellcore-net";
tag = version;
hash = "sha256-yMNAu8iSFB2UDqJR3u2XFelpGRKzi/3HyuEbrZK6v8g=";
};
build-system = [ setuptools ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "tellcorenet" ];
meta = {
description = "Python module that allows to run tellcore over TCP/IP";
homepage = "https://github.com/home-assistant-libs/tellcore-net";
changelog = "https://github.com/home-assistant-libs/tellcore-net/releases/tag/${version}";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -17907,6 +17907,8 @@ self: super: with self; {
telfhash = callPackage ../development/python-modules/telfhash { };
tellcore-net = callPackage ../development/python-modules/tellcore-net { };
tellduslive = callPackage ../development/python-modules/tellduslive { };
temescal = callPackage ../development/python-modules/temescal { };