mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 21:16:37 +01:00
asyncio_default_fixture_loop_scope was set to Null which is invalid. Applied upstream patch.
88 lines
1.9 KiB
Nix
88 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
setuptools,
|
|
cachecontrol,
|
|
cryptography,
|
|
google-api-python-client,
|
|
google-cloud-firestore,
|
|
google-cloud-storage,
|
|
h2,
|
|
httpx,
|
|
pyjwt,
|
|
requests,
|
|
respx,
|
|
pytestCheckHook,
|
|
pytest-asyncio,
|
|
pytest-localserver,
|
|
pytest-mock,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "firebase-admin";
|
|
version = "7.1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "firebase";
|
|
repo = "firebase-admin-python";
|
|
tag = "v${version}";
|
|
hash = "sha256-xlKrtH8f9UzY9OGYrpNH0i2OAlcxTrpzPC5JEuL8plM=";
|
|
};
|
|
|
|
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
|
|
google-api-python-client
|
|
google-cloud-firestore
|
|
google-cloud-storage
|
|
httpx
|
|
pyjwt
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-asyncio
|
|
pytest-localserver
|
|
pytest-mock
|
|
h2
|
|
respx
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
disabledTests = [
|
|
# Flaky (AssertionError)
|
|
# > assert delta <= timedelta(seconds=15)
|
|
# E assert datetime.timedelta(seconds=17, microseconds=28239) <= datetime.timedelta(seconds=15)
|
|
"test_task_options"
|
|
|
|
# Flaky / timing sensitive
|
|
"test_expired_cookie_with_tolerance"
|
|
"test_expired_token_with_tolerance"
|
|
];
|
|
|
|
meta = {
|
|
description = "Firebase Admin Python SDK";
|
|
homepage = "https://github.com/firebase/firebase-admin-python";
|
|
changelog = "https://github.com/firebase/firebase-admin-python/releases/tag/${src.tag}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
jhahn
|
|
sarahec
|
|
];
|
|
};
|
|
}
|