Unverified Commit ba3d838c authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.microsoft-kiota-serialization-json: 1.9.10 -> 1.10.1 (#507989)

parents decdd71f 19c25405
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -11,19 +11,19 @@
  gitUpdater,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "microsoft-kiota-serialization-json";
  version = "1.9.10";
  version = "1.10.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "microsoft";
    repo = "kiota-python";
    tag = "microsoft-kiota-serialization-json-v${version}";
    hash = "sha256-J9OLxZ3vQpChhfwjXzrGF691zco/bKv51FG20VFieN0=";
    tag = "microsoft-kiota-serialization-json-v${finalAttrs.version}";
    hash = "sha256-KBCjVNZDPMh0wxWm8UVLsrfl2AYp3rKMjAT5c8F7+64=";
  };

  sourceRoot = "${src.name}/packages/serialization/json/";
  sourceRoot = "${finalAttrs.src.name}/packages/serialization/json/";

  build-system = [ poetry-core ];

@@ -47,8 +47,8 @@ buildPythonPackage rec {
  meta = {
    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-${src.tag}";
    changelog = "https://github.com/microsoft/kiota-python/releases/tag/microsoft-kiota-serialization-json-${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})