python3Packages.russound: init at 0.1.8 (#434143)

This commit is contained in:
Martin Weinelt
2025-08-16 20:45:55 +02:00
committed by GitHub
3 changed files with 41 additions and 1 deletions
@@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
requests,
}:
buildPythonPackage rec {
pname = "russound";
version = "0.1.8";
pyproject = true;
src = fetchFromGitHub {
owner = "laf";
repo = "russound";
tag = version;
hash = "sha256-iAhHOZwgaLhgkN/oW3Oz9bazyoqlP8GIsaXpqyXs3/Y=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
# Tests require actual hardware to connect to
doCheck = false;
pythonImportsCheck = [ "russound" ];
meta = {
description = "Python API for select Russound RNET commands to provide Russound support within home-assistant.io";
homepage = "https://github.com/laf/russound";
changelog = "https://github.com/laf/russound/releases/tag/${version}";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
@@ -5046,7 +5046,8 @@
];
"russound_rnet" =
ps: with ps; [
]; # missing inputs: russound
russound
];
"ruuvi_gateway" =
ps: with ps; [
aioruuvigateway
+2
View File
@@ -16053,6 +16053,8 @@ self: super: with self; {
runstats = callPackage ../development/python-modules/runstats { };
russound = callPackage ../development/python-modules/russound { };
rustworkx = callPackage ../development/python-modules/rustworkx { };
ruuvitag-ble = callPackage ../development/python-modules/ruuvitag-ble { };