about summary refs log tree commit diff
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-12-17 18:01:38 +0000
committerGitHub <noreply@github.com>2023-12-17 18:01:38 +0000
commit71c41d360a50e63572570dfeab4ff452c763e9d7 (patch)
treef934e23c13a84251092cd9d6d55435f8b8c13881 /pkgs/tools/audio
parent038a96835b20a7a74223c65c955611390bb4cc94 (diff)
parent6396e5680929ec6b9e88d6f1b308af5b83995183 (diff)
downloadnixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.tar
nixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.tar.gz
nixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.tar.bz2
nixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.tar.lz
nixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.tar.xz
nixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.tar.zst
nixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/soco-cli/default.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/pkgs/tools/audio/soco-cli/default.nix b/pkgs/tools/audio/soco-cli/default.nix
deleted file mode 100644
index 068f916e4ef0..000000000000
--- a/pkgs/tools/audio/soco-cli/default.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{ lib
-, fetchFromGitHub
-, python3
-}:
-
-python3.pkgs.buildPythonApplication rec {
-  pname = "soco-cli";
-  version = "0.4.55";
-  format = "setuptools";
-
-  disabled = python3.pythonOlder "3.6";
-
-  src = fetchFromGitHub rec {
-    owner = "avantrec";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "sha256-zdu1eVtVBTYa47KjGc5fqKN6olxp98RoLGT2sNCfG9E=";
-  };
-
-  propagatedBuildInputs = with python3.pkgs; [
-    fastapi
-    rangehttpserver
-    soco
-    tabulate
-    uvicorn
-  ];
-
-  # Tests wants to communicate with hardware
-  doCheck = false;
-
-  pythonImportsCheck = [
-    "soco_cli"
-  ];
-
-  meta = with lib; {
-    description = "Command-line interface to control Sonos sound systems";
-    homepage = "https://github.com/avantrec/soco-cli";
-    license = with licenses; [ asl20 ];
-    maintainers = with maintainers; [ fab ];
-    mainProgram = "sonos";
-  };
-}