python3Packages.steamloop: init at 1.2.1

This commit is contained in:
Jamie Magee
2026-03-23 12:57:29 -07:00
parent 4a6df732e7
commit c28115f784
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,43 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
orjson,
pytest-cov-stub,
pytestCheckHook,
pytest-asyncio,
}:
buildPythonPackage (finalAttrs: {
pname = "steamloop";
version = "1.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "hvaclibs";
repo = "steamloop";
tag = "v${finalAttrs.version}";
hash = "sha256-0uzx1lW34sBWq06dR+ajPZ5VfUSTQHGSB/hoy1fLKLo=";
};
build-system = [ setuptools ];
dependencies = [ orjson ];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
pytest-asyncio
];
pythonImportsCheck = [ "steamloop" ];
meta = {
description = "Local control for choochoo based thermostats";
homepage = "https://github.com/hvaclibs/steamloop";
changelog = "https://github.com/hvaclibs/steamloop/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.jamiemagee ];
};
})
+2
View File
@@ -18533,6 +18533,8 @@ self: super: with self; {
steam = callPackage ../development/python-modules/steam { };
steamloop = callPackage ../development/python-modules/steamloop { };
steamodd = callPackage ../development/python-modules/steamodd { };
steampy = callPackage ../development/python-modules/steampy { };