Merge pull request #274959 from drupol/bump/soco-cli

soco-cli: 0.4.55 -> 0.4.73
This commit is contained in:
Pol Dellaiera 2023-12-17 18:01:05 +01:00 committed by GitHub
commit b0ba41317d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 8 deletions

View file

@ -5,16 +5,16 @@
python3.pkgs.buildPythonApplication rec {
pname = "soco-cli";
version = "0.4.55";
version = "0.4.73";
format = "setuptools";
disabled = python3.pythonOlder "3.6";
src = fetchFromGitHub rec {
src = fetchFromGitHub {
owner = "avantrec";
repo = pname;
rev = "v${version}";
sha256 = "sha256-zdu1eVtVBTYa47KjGc5fqKN6olxp98RoLGT2sNCfG9E=";
hash = "sha256-WxBwHjh5tCXclQXqrHrpvZdcQU93RObteAfZyyVvKf0=";
};
propagatedBuildInputs = with python3.pkgs; [
@ -32,11 +32,11 @@ python3.pkgs.buildPythonApplication rec {
"soco_cli"
];
meta = with lib; {
meta = {
description = "Command-line interface to control Sonos sound systems";
homepage = "https://github.com/avantrec/soco-cli";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
license = with lib.licenses; [ asl20 ];
mainProgram = "sonos";
maintainers = with lib.maintainers; [ fab ];
};
}

View file

@ -25117,8 +25117,6 @@ with pkgs;
socket_wrapper = callPackage ../development/libraries/socket_wrapper { };
soco-cli = callPackage ../tools/audio/soco-cli { };
sofia_sip = callPackage ../development/libraries/sofia-sip {
inherit (darwin.apple_sdk.frameworks) SystemConfiguration;
};