Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
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 ];
|
|
};
|
|
}
|