about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2023-12-17 11:56:02 +0100
committerPol Dellaiera <pol.dellaiera@protonmail.com>2023-12-17 11:56:02 +0100
commit819924bbf8ee07f1e709d1d6486ff365f774dcfc (patch)
treed4e08afb7716b1621332c381767e08d200b3bed5 /pkgs/tools
parent0009d02d743d24318fececedcaedfac269c0ead1 (diff)
soco-cli: 0.4.55 -> 0.4.73
Diffstat (limited to 'pkgs/tools')
-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 068f916e4ef01..0000000000000
--- 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";
-  };
-}