python313Packages.aiostreammagic: 2.11.0 -> 2.12.1 (#489235)

This commit is contained in:
Fabian Affolter
2026-02-11 08:18:31 +00:00
committed by GitHub
@@ -6,22 +6,19 @@
mashumaro,
orjson,
poetry-core,
pythonOlder,
yarl,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aiostreammagic";
version = "2.11.0";
version = "2.12.1";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "noahhusby";
repo = "aiostreammagic";
tag = version;
hash = "sha256-8ahLB5F2JKpA4F21WWDFzrDxoOpIq+d1iXuCjQngGtc=";
tag = finalAttrs.version;
hash = "sha256-CctTyRaJ8lVIniVEc+SmGk+UxW8pcAzhqzrqj1WtIwY=";
};
build-system = [ poetry-core ];
@@ -41,8 +38,8 @@ buildPythonPackage rec {
meta = {
description = "Module for interfacing with Cambridge Audio/Stream Magic compatible streamers";
homepage = "https://github.com/noahhusby/aiostreammagic";
changelog = "https://github.com/noahhusby/aiostreammagic/releases/tag/${version}";
changelog = "https://github.com/noahhusby/aiostreammagic/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})