python3Packages.firebsse-admin: fix broken asyncio setting

asyncio_default_fixture_loop_scope was set to Null which is invalid. Applied upstream patch.
This commit is contained in:
Sarah Clark
2025-11-17 11:24:53 -08:00
parent 439e7dfc42
commit 11f8a82550
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
setuptools,
cachecontrol,
cryptography,
@@ -33,6 +34,14 @@ buildPythonPackage rec {
build-system = [ setuptools ];
patches = [
(fetchpatch {
name = "remove-asyncio-default-fixture-loop-scope.patch";
url = "https://github.com/firebase/firebase-admin-python/commit/de713d21da83b1f50c24c5a23132ffc442700448.patch";
hash = "sha256-D4edbVHMejpnSmIYblrq9E5+YdbBzLe/VWbObvMNGdk=";
})
];
dependencies = [
cachecontrol
cryptography