python3Packages.aioamazondevices: 13.8.2 -> 14.0.0

https://github.com/chemelli74/aioamazondevices/blob/v14.0.0/CHANGELOG.md
This commit is contained in:
Martin Weinelt
2026-06-03 13:22:01 +02:00
parent b7aabb010b
commit 79da892951
@@ -13,16 +13,16 @@
python-dateutil,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aioamazondevices";
version = "13.8.2";
version = "14.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "chemelli74";
repo = "aioamazondevices";
tag = "v${version}";
hash = "sha256-abmirmeDmGF7YuD2SDW9Dc549KeR2ESK1DmDm+uXWoU=";
tag = "v${finalAttrs.version}";
hash = "sha256-ZF3w5lg6NijVBkJKoItmblay90VzUsDqPVxk712sXRU=";
};
build-system = [ poetry-core ];
@@ -45,10 +45,10 @@ buildPythonPackage rec {
];
meta = {
changelog = "https://github.com/chemelli74/aioamazondevices/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/chemelli74/aioamazondevices/blob/${finalAttrs.src.tag}/CHANGELOG.md";
description = "Python library to control Amazon devices";
homepage = "https://github.com/chemelli74/aioamazondevices";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
})