python3Packages.sonos-websocket: 0.1.3 -> 0.2.0 (#531362)

This commit is contained in:
Fabian Affolter
2026-06-13 19:35:04 +00:00
committed by GitHub
@@ -6,23 +6,21 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "sonos-websocket";
version = "0.1.3";
version = "0.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jjlawren";
repo = "sonos-websocket";
tag = version;
hash = "sha256-1sgYLwIW7VWnHJGsfIQ95AGZ5j/DPMKQr5n7F+/MsuY=";
tag = finalAttrs.version;
hash = "sha256-Yf6osDW7+PYalj3bK7+wF2RotCVlcLJD1ulqLcxrdMU=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
];
dependencies = [ aiohttp ];
# Module has no tests
doCheck = false;
@@ -32,8 +30,8 @@ buildPythonPackage rec {
meta = {
description = "Library to communicate with Sonos devices over websockets";
homepage = "https://github.com/jjlawren/sonos-websocket";
changelog = "https://github.com/jjlawren/sonos-websocket/releases/tag/${version}";
changelog = "https://github.com/jjlawren/sonos-websocket/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})