python312Packages.microsoft-kiota-serialization-json: 1.9.1 -> 1.9.2 (#381809)

This commit is contained in:
Fabian Affolter 2025-02-14 00:26:02 +01:00 committed by GitHub
commit 57691937d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "microsoft-kiota-serialization-json";
version = "1.9.1";
version = "1.9.2";
pyproject = true;
disabled = pythonOlder "3.9";
@ -21,8 +21,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "microsoft";
repo = "kiota-python";
tag = "microsoft-kiota-serialization-json-v${version}";
hash = "sha256-ESRnI8prXG1h5H5RVD4eOQ1sQYSEMMLVHSk8yhzFGVw=";
tag = "microsoft-kiota-serialization-text-v${version}";
hash = "sha256-ribVfvKmDMxGmeqj30SDcnbNGdRBfs1DmqQGXP3EHCk=";
};
sourceRoot = "source/packages/serialization/json/";
@ -45,7 +45,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "JSON serialization implementation for Kiota clients in Python";
homepage = "https://github.com/microsoft/kiota-python/tree/main/packages/serialization/json";
changelog = "https://github.com/microsoft/kiota-python/releases/tag/microsoft-kiota-serialization-json-v${version}";
changelog = "https://github.com/microsoft/kiota-python/releases/tag/microsoft-kiota-serialization-json-${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};