python3Packages.russound: init at 0.1.8
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user