From 32617b57880eb292e54fff9064c9b0c3d1ae1cb1 Mon Sep 17 00:00:00 2001 From: dish Date: Mon, 25 Aug 2025 12:55:55 -0400 Subject: [PATCH] python3Packages.msgraph-core: Fix missing dependency unblocks authentik from building properly --- pkgs/development/python-modules/msgraph-core/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/msgraph-core/default.nix b/pkgs/development/python-modules/msgraph-core/default.nix index 235a8be3a46a..c673d7e14421 100644 --- a/pkgs/development/python-modules/msgraph-core/default.nix +++ b/pkgs/development/python-modules/msgraph-core/default.nix @@ -9,7 +9,7 @@ microsoft-kiota-abstractions, microsoft-kiota-authentication-azure, microsoft-kiota-http, - requests, + microsoft-kiota-serialization-json, azure-identity, pytestCheckHook, responses, @@ -36,11 +36,12 @@ buildPythonPackage rec { microsoft-kiota-abstractions microsoft-kiota-authentication-azure microsoft-kiota-http - requests - ]; + ] + ++ httpx.optional-dependencies.http2; nativeCheckInputs = [ azure-identity + microsoft-kiota-serialization-json pytestCheckHook python-dotenv responses