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

View File

@ -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;