Merge pull request #279245 from fabaff/google-cloud-firestore-bump

python311Packages.google-cloud-firestore: 2.13.1 -> 2.14.0
This commit is contained in:
Fabian Affolter 2024-01-07 11:33:38 +01:00 committed by GitHub
commit 12c489d36b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,7 @@
, aiounittest
, buildPythonPackage
, fetchPypi
, freezegun
, google-api-core
, google-cloud-core
, google-cloud-testutils
@ -11,20 +12,25 @@
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "google-cloud-firestore";
version = "2.13.1";
format = "setuptools";
version = "2.14.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-vRTS65rjWNIQWM4JHBPeoRkX4m8cQ3OKUenOqLSbTzg=";
hash = "sha256-mr+3U+s89wB2uc/whvcdOYwJfAsbD9ll1a8n1a5K5AE=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
google-api-core
google-cloud-core
@ -34,6 +40,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
aiounittest
freezegun
google-cloud-testutils
mock
pytest-asyncio
@ -49,12 +56,12 @@ buildPythonPackage rec {
# Tests are broken
"tests/system/test_system.py"
"tests/system/test_system_async.py"
# requires credentials
# Test requires credentials
"tests/unit/v1/test_bulk_writer.py"
];
disabledTests = [
# requires credentials
# Test requires credentials
"test_collections"
];