python310Packages.skodaconnect: 1.1.27 -> 1.2.2

Changelog: https://github.com/lendy007/skodaconnect/releases/tag/1.2.2
This commit is contained in:
Fabian Affolter 2022-12-25 12:40:13 +01:00
parent 27ae3f26b3
commit c61ed5bf6c

View file

@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "skodaconnect";
version = "1.1.27";
version = "1.2.2";
format = "setuptools";
disabled = pythonOlder "3.8";
@ -20,8 +20,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "lendy007";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-CK5u2Nx1Z7XPDL5W24XxYCo3GfMYCAqKwxpQ8QTfQ0o=";
rev = "refs/tags/${version}";
hash = "sha256-pBCeOp71A0uksSv4N50ZXAZeg72mT5FC4Toad/1Yc0Y=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -55,7 +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}";
changelog = "https://github.com/lendy007/skodaconnect/releases/tag/${version}";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};