Sarah Clark 2025-06-14 09:16:30 -07:00
parent 9016c6f39e
commit e39fba2642

View File

@ -1,6 +1,5 @@
{ {
lib, lib,
stdenv,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
setuptools, setuptools,
@ -9,8 +8,11 @@
google-api-python-client, google-api-python-client,
google-cloud-firestore, google-cloud-firestore,
google-cloud-storage, google-cloud-storage,
h2,
httpx,
pyjwt, pyjwt,
requests, requests,
respx,
pytestCheckHook, pytestCheckHook,
pytest-asyncio, pytest-asyncio,
pytest-localserver, pytest-localserver,
@ -19,14 +21,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "firebase-admin"; pname = "firebase-admin";
version = "6.8.0"; version = "6.9.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "firebase"; owner = "firebase";
repo = "firebase-admin-python"; repo = "firebase-admin-python";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-N8DidHocdIV5qFEPZIqWZPfxvIfJzd/+jXGk/OZBT1s="; hash = "sha256-TB5YIprtSXHbeWlu9U4fDjWCZdO5vM695u28Hv6w2e0=";
}; };
build-system = [ setuptools ]; build-system = [ setuptools ];
@ -37,6 +39,7 @@ buildPythonPackage rec {
google-api-python-client google-api-python-client
google-cloud-firestore google-cloud-firestore
google-cloud-storage google-cloud-storage
httpx
pyjwt pyjwt
requests requests
]; ];
@ -46,6 +49,8 @@ buildPythonPackage rec {
pytest-asyncio pytest-asyncio
pytest-localserver pytest-localserver
pytest-mock pytest-mock
h2
respx
]; ];
__darwinAllowLocalNetworking = true; __darwinAllowLocalNetworking = true;