From ce2661d427022e982a988e8eb17658837355e383 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Nov 2022 10:53:12 +0100 Subject: [PATCH 1/2] python310Packages.skodaconnect: add changelog to meta --- pkgs/development/python-modules/skodaconnect/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/skodaconnect/default.nix b/pkgs/development/python-modules/skodaconnect/default.nix index 02d66aa84e8c..35106f9f77d2 100644 --- a/pkgs/development/python-modules/skodaconnect/default.nix +++ b/pkgs/development/python-modules/skodaconnect/default.nix @@ -55,6 +55,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python module to communicate with Skoda Connect"; homepage = "https://github.com/lendy007/skodaconnect"; + changelog = "https://github.com/lendy007/skodaconnect/releases/tag/v${version}"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ fab ]; }; From f7297a58ec07ce1cb3afb8f40f8d6bac878428f9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 26 Nov 2022 10:55:06 +0100 Subject: [PATCH 2/2] python310Packages.skodaconnect: 1.1.26 -> 1.1.27 Changelog: https://github.com/lendy007/skodaconnect/releases/tag/v1.1.27 --- pkgs/development/python-modules/skodaconnect/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/skodaconnect/default.nix b/pkgs/development/python-modules/skodaconnect/default.nix index 35106f9f77d2..f3997a73556d 100644 --- a/pkgs/development/python-modules/skodaconnect/default.nix +++ b/pkgs/development/python-modules/skodaconnect/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "skodaconnect"; - version = "1.1.26"; + version = "1.1.27"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -20,8 +20,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "lendy007"; repo = pname; - rev = "refs/tags/${version}"; - hash = "sha256-zuS19oM3V+o0yiby6yOX2RSxXY3m5qhqjlX2v9jmpIk="; + rev = "refs/tags/v${version}"; + hash = "sha256-CK5u2Nx1Z7XPDL5W24XxYCo3GfMYCAqKwxpQ8QTfQ0o="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version;