python3Packages.steamloop: init at 1.2.1 (#502771)
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user