From 4e0aa987626cff278ce995363b6385bfef9c7678 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 20 Feb 2023 22:10:15 +0100 Subject: [PATCH 1/2] python310Packages.aiocurrencylayer: add changelog to meta --- pkgs/development/python-modules/aiocurrencylayer/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/aiocurrencylayer/default.nix b/pkgs/development/python-modules/aiocurrencylayer/default.nix index 80144877e141..194e04f19981 100644 --- a/pkgs/development/python-modules/aiocurrencylayer/default.nix +++ b/pkgs/development/python-modules/aiocurrencylayer/default.nix @@ -44,6 +44,7 @@ buildPythonPackage rec { meta = with lib; { 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}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; From 18080bbfd0de49796382fd1ce9a2e2c782314567 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 20 Feb 2023 22:11:22 +0100 Subject: [PATCH 2/2] python310Packages.aiocurrencylayer: 1.0.4 -> 1.0.5 Diff: https://github.com/home-assistant-ecosystem/aiocurrencylayer/compare/refs/tags/1.0.4...1.0.5 Changelog: https://github.com/home-assistant-ecosystem/aiocurrencylayer/releases/tag/1.0.5 --- .../python-modules/aiocurrencylayer/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/aiocurrencylayer/default.nix b/pkgs/development/python-modules/aiocurrencylayer/default.nix index 194e04f19981..39fb1deeb9b3 100644 --- a/pkgs/development/python-modules/aiocurrencylayer/default.nix +++ b/pkgs/development/python-modules/aiocurrencylayer/default.nix @@ -11,16 +11,16 @@ buildPythonPackage rec { pname = "aiocurrencylayer"; - version = "1.0.4"; + version = "1.0.5"; format = "pyproject"; - disabled = pythonOlder "3.8"; + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "home-assistant-ecosystem"; repo = pname; - rev = version; - sha256 = "sha256-neWUld/XnF5xTHSrw5EfGfNhpYzZi5TZsWN4+eqsVXs="; + rev = "refs/tags/${version}"; + hash = "sha256-468OBQV7ISnPRUfi/CM3dCh1ez0jwSVnM6DduPvAgPI="; }; nativeBuildInputs = [