{ lib , buildPythonPackage , fetchPypi , aiounittest , google-api-core , google-cloud-testutils , google-cloud-core , mock , proto-plus , pytestCheckHook , pytest-asyncio }: buildPythonPackage rec { pname = "google-cloud-firestore"; version = "2.1.3"; src = fetchPypi { inherit pname version; sha256 = "143a88ef2b90c98f16d2b0bc192631ca3e2b7c66a236d93ba9961de64e50870e"; }; propagatedBuildInputs = [ google-api-core google-cloud-core proto-plus ]; checkInputs = [ aiounittest google-cloud-testutils mock pytestCheckHook pytest-asyncio ]; preCheck = '' # do not shadow imports rm -r google ''; disabledTestPaths = [ # Tests are broken "tests/system/test_system.py" "tests/system/test_system_async.py" ]; disabledTests = [ # requires credentials "test_collections" ]; pythonImportsCheck = [ "google.cloud.firestore_v1" "google.cloud.firestore_admin_v1" ]; meta = with lib; { description = "Google Cloud Firestore API client library"; homepage = "https://github.com/googleapis/python-firestore"; license = licenses.asl20; maintainers = with maintainers; [ SuperSandro2000 ]; }; }