python3Packages.aiocurrencylayer: 1.0.6 -> 1.1.0 (#507413)

This commit is contained in:
Fabian Affolter
2026-04-06 23:46:54 +00:00
committed by GitHub
@@ -9,16 +9,16 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aiocurrencylayer";
version = "1.0.6";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "home-assistant-ecosystem";
repo = "aiocurrencylayer";
tag = version;
hash = "sha256-VOzgWN+dDPaGEcahFPSWjBR989b9eNkx4zcnI9o2Xiw=";
tag = finalAttrs.version;
hash = "sha256-l9M9ejcaXLkIFtD3Qz3dkTR4xDIZuT94OT4yg/6ipYA=";
};
nativeBuildInputs = [ poetry-core ];
@@ -36,8 +36,8 @@ buildPythonPackage rec {
meta = {
description = "Python API for interacting with currencylayer";
homepage = "https://github.com/home-assistant-ecosystem/aiocurrencylayer";
changelog = "https://github.com/home-assistant-ecosystem/aiocurrencylayer/releases/tag/${version}";
changelog = "https://github.com/home-assistant-ecosystem/aiocurrencylayer/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})