python3Packages.pywaze: 1.1.1 -> 1.2.0 (#500482)

This commit is contained in:
Sandro
2026-03-18 16:05:28 +00:00
committed by GitHub
@@ -10,16 +10,16 @@
respx,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pywaze";
version = "1.1.1";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "eifinger";
repo = "pywaze";
tag = "v${version}";
hash = "sha256-INjVspha4AbxKPMQtL/4BUavFisrQXUGofZ3nuz39UU=";
tag = "v${finalAttrs.version}";
hash = "sha256-yhECJORKVM8R/+CjhSTwgtCPeQ8QwIuG3EZHmtjVkX0=";
};
build-system = [ hatchling ];
@@ -38,8 +38,8 @@ buildPythonPackage rec {
meta = {
description = "Module for calculating WAZE routes and travel times";
homepage = "https://github.com/eifinger/pywaze";
changelog = "https://github.com/eifinger/pywaze/releases/tag/v${version}";
changelog = "https://github.com/eifinger/pywaze/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})