{ lib, buildPythonPackage, fetchFromGitHub, flit-core, microsoft-kiota-abstractions, pytest-asyncio, pendulum, pytest-mock, pytestCheckHook, pythonOlder, }: buildPythonPackage rec { pname = "microsoft-kiota-serialization-form"; version = "0.1.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "microsoft"; repo = "kiota-serialization-form-python"; rev = "refs/tags/v${version}"; hash = "sha256-ecFspbCaSkRoQTTeyZdqGpWSKiQJS6viDgBVNDHPo4g="; }; build-system = [ flit-core ]; dependencies = [ microsoft-kiota-abstractions pendulum ]; nativeCheckInputs = [ pytest-asyncio pytest-mock pytestCheckHook ]; pythonImportsCheck = [ "kiota_serialization_form" ]; meta = with lib; { description = "Form serialization implementation for Kiota clients in Python"; homepage = "https://github.com/microsoft/kiota-serialization-form-python"; changelog = "https://github.com/microsoft/kiota-serialization-form-python/blob/${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }