python3Packages.russound: init at 0.1.8

This commit is contained in:
Jamie Magee
2025-08-15 22:14:19 -07:00
parent 0974f0729a
commit e4ba41fd2c
2 changed files with 39 additions and 0 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 ];
};
}
+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 { };