46 lines
903 B
Nix
46 lines
903 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
fetchFromGitHub,
|
||
|
|
python3,
|
||
|
|
}:
|
||
|
|
|
||
|
|
python3.pkgs.buildPythonApplication rec {
|
||
|
|
pname = "soco-cli";
|
||
|
|
version = "0.4.80";
|
||
|
|
pyproject = true;
|
||
|
|
|
||
|
|
disabled = python3.pythonOlder "3.6";
|
||
|
|
|
||
|
|
src = fetchFromGitHub {
|
||
|
|
owner = "avantrec";
|
||
|
|
repo = "soco-cli";
|
||
|
|
rev = "v${version}";
|
||
|
|
hash = "sha256-w4F1N1ULGH7mbxtI8FpZ54ixa9o7N2A9OEiE2FOf73g=";
|
||
|
|
};
|
||
|
|
|
||
|
|
build-system = with python3.pkgs; [ setuptools ];
|
||
|
|
|
||
|
|
dependencies = with python3.pkgs; [
|
||
|
|
fastapi
|
||
|
|
rangehttpserver
|
||
|
|
soco
|
||
|
|
tabulate
|
||
|
|
uvicorn
|
||
|
|
];
|
||
|
|
|
||
|
|
# Tests wants to communicate with hardware
|
||
|
|
doCheck = false;
|
||
|
|
|
||
|
|
pythonImportsCheck = [
|
||
|
|
"soco_cli"
|
||
|
|
];
|
||
|
|
|
||
|
|
meta = {
|
||
|
|
description = "Command-line interface to control Sonos sound systems";
|
||
|
|
homepage = "https://github.com/avantrec/soco-cli";
|
||
|
|
license = with lib.licenses; [ asl20 ];
|
||
|
|
mainProgram = "sonos";
|
||
|
|
maintainers = with lib.maintainers; [ fab ];
|
||
|
|
};
|
||
|
|
}
|