python3Packages.steamloop: init at 1.2.1 (#502771)

This commit is contained in:
dotlambda
2026-03-26 03:30:49 +00:00
committed by GitHub
4 changed files with 52 additions and 1 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 ];
};
})
@@ -6491,7 +6491,8 @@
];
"trane" =
ps: with ps; [
]; # missing inputs: steamloop
steamloop
];
"transmission" =
ps: with ps; [
transmission-rpc
@@ -8177,6 +8178,7 @@
"trafikverket_ferry"
"trafikverket_train"
"trafikverket_weatherstation"
"trane"
"transmission"
"transport_nsw"
"trend"
+4
View File
@@ -199,6 +199,10 @@ let
# sandbox doesn't grant access to /sys/class/power_supply
"tests/components/systemmonitor/test_config_flow.py::test_add_and_remove_processes"
];
trane = [
# TraneConfigFlow doesn't support step reauth
"tests/components/trane/test_init.py::test_setup_auth_error"
];
youtube = [
# outdated snapshot
"tests/components/youtube/test_sensor.py::test_sensor"
+2
View File
@@ -18543,6 +18543,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 { };