python310Packages.google-cloud-firestore: 2.7.2 -> 2.7.3

Changelog: https://github.com/googleapis/python-firestore/blob/v2.7.3/CHANGELOG.md
This commit is contained in:
Fabian Affolter
2022-12-28 18:23:01 +01:00
parent 1012b4dcd3
commit 3a3c6a90d5
@@ -1,37 +1,43 @@
{ lib
, aiounittest
, buildPythonPackage
, fetchPypi
, aiounittest
, google-api-core
, google-cloud-testutils
, google-cloud-core
, google-cloud-testutils
, mock
, proto-plus
, pytestCheckHook
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-firestore";
version = "2.7.2";
version = "2.7.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-yGB6dLcRxEuqPYGEbpOI5DInos/1ILWmzeXN+ck/W+g=";
hash = "sha256-rH2aIst5XHEq93FXxlfDreROIWnM8pmq2UOOg9T2kjU=";
};
propagatedBuildInputs = [
google-api-core
google-cloud-core
proto-plus
];
protobuf
] ++ google-api-core.optional-dependencies.grpc;
checkInputs = [
aiounittest
google-cloud-testutils
mock
pytestCheckHook
pytest-asyncio
pytestCheckHook
];
preCheck = ''