From e39fba264227140d5e8dba3735ff7cc488e06120 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sat, 14 Jun 2025 09:16:30 -0700 Subject: [PATCH] python3Packages.firebase-admin: 6.8.0 -> 6.9.0 changelog: https://github.com/firebase/firebase-admin-python/releases/tag/v6.9.0 diff: https://github.com/firebase/firebase-admin-python/compare/v6.8.0...v6.9.0 --- .../python-modules/firebase-admin/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/firebase-admin/default.nix b/pkgs/development/python-modules/firebase-admin/default.nix index d2d91cfe4bfe..2b4f9f979d73 100644 --- a/pkgs/development/python-modules/firebase-admin/default.nix +++ b/pkgs/development/python-modules/firebase-admin/default.nix @@ -1,6 +1,5 @@ { lib, - stdenv, buildPythonPackage, fetchFromGitHub, setuptools, @@ -9,8 +8,11 @@ google-api-python-client, google-cloud-firestore, google-cloud-storage, + h2, + httpx, pyjwt, requests, + respx, pytestCheckHook, pytest-asyncio, pytest-localserver, @@ -19,14 +21,14 @@ buildPythonPackage rec { pname = "firebase-admin"; - version = "6.8.0"; + version = "6.9.0"; pyproject = true; src = fetchFromGitHub { owner = "firebase"; repo = "firebase-admin-python"; tag = "v${version}"; - hash = "sha256-N8DidHocdIV5qFEPZIqWZPfxvIfJzd/+jXGk/OZBT1s="; + hash = "sha256-TB5YIprtSXHbeWlu9U4fDjWCZdO5vM695u28Hv6w2e0="; }; build-system = [ setuptools ]; @@ -37,6 +39,7 @@ buildPythonPackage rec { google-api-python-client google-cloud-firestore google-cloud-storage + httpx pyjwt requests ]; @@ -46,6 +49,8 @@ buildPythonPackage rec { pytest-asyncio pytest-localserver pytest-mock + h2 + respx ]; __darwinAllowLocalNetworking = true;