2024-05-15 15:35:15 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
deprecated,
|
|
|
|
fetchPypi,
|
|
|
|
google-api-core,
|
|
|
|
google-cloud-core,
|
|
|
|
google-cloud-testutils,
|
|
|
|
grpc-google-iam-v1,
|
|
|
|
grpc-interceptor,
|
|
|
|
libcst,
|
|
|
|
mock,
|
|
|
|
proto-plus,
|
|
|
|
protobuf,
|
|
|
|
pytest-asyncio,
|
|
|
|
pytestCheckHook,
|
|
|
|
pythonOlder,
|
|
|
|
sqlparse,
|
|
|
|
setuptools,
|
2021-01-09 10:05:03 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "google-cloud-spanner";
|
2024-05-15 15:35:15 +00:00
|
|
|
version = "3.45.0";
|
2024-01-25 14:12:00 +00:00
|
|
|
pyproject = true;
|
2022-09-30 11:47:45 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2021-01-09 10:05:03 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-05-15 15:35:15 +00:00
|
|
|
hash = "sha256-MKtW6krGqnQ3hCmPgh4N5lRAGTe0DGDMegpUUoSpG0M=";
|
2021-01-09 10:05:03 +00:00
|
|
|
};
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
build-system = [ setuptools ];
|
2024-01-25 14:12:00 +00:00
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
dependencies = [
|
2024-01-25 14:12:00 +00:00
|
|
|
deprecated
|
2023-01-11 07:51:40 +00:00
|
|
|
google-api-core
|
2021-06-28 23:13:55 +00:00
|
|
|
google-cloud-core
|
2021-08-18 13:19:15 +00:00
|
|
|
grpc-google-iam-v1
|
2024-02-29 20:09:43 +00:00
|
|
|
grpc-interceptor
|
2021-06-28 23:13:55 +00:00
|
|
|
proto-plus
|
2023-01-11 07:51:40 +00:00
|
|
|
protobuf
|
2021-06-28 23:13:55 +00:00
|
|
|
sqlparse
|
2023-01-11 07:51:40 +00:00
|
|
|
] ++ google-api-core.optional-dependencies.grpc;
|
|
|
|
|
|
|
|
passthru.optional-dependencies = {
|
2024-05-15 15:35:15 +00:00
|
|
|
libcst = [ libcst ];
|
2023-01-11 07:51:40 +00:00
|
|
|
};
|
2021-01-09 10:05:03 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2021-06-28 23:13:55 +00:00
|
|
|
google-cloud-testutils
|
|
|
|
mock
|
|
|
|
pytest-asyncio
|
2023-01-11 07:51:40 +00:00
|
|
|
pytestCheckHook
|
2021-06-28 23:13:55 +00:00
|
|
|
];
|
2021-01-09 10:05:03 +00:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
# prevent google directory from shadowing google imports
|
|
|
|
rm -r google
|
|
|
|
'';
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
disabledTestPaths = [
|
|
|
|
# Requires credentials
|
2021-08-27 14:25:00 +00:00
|
|
|
"tests/system/test_backup_api.py"
|
|
|
|
"tests/system/test_database_api.py"
|
|
|
|
"tests/system/test_dbapi.py"
|
|
|
|
"tests/system/test_instance_api.py"
|
|
|
|
"tests/system/test_session_api.py"
|
|
|
|
"tests/system/test_streaming_chunking.py"
|
|
|
|
"tests/system/test_table_api.py"
|
2021-06-28 23:13:55 +00:00
|
|
|
"tests/unit/spanner_dbapi/test_connect.py"
|
|
|
|
"tests/unit/spanner_dbapi/test_connection.py"
|
|
|
|
"tests/unit/spanner_dbapi/test_cursor.py"
|
|
|
|
];
|
|
|
|
|
2021-01-09 10:05:03 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"google.cloud.spanner_admin_database_v1"
|
|
|
|
"google.cloud.spanner_admin_instance_v1"
|
|
|
|
"google.cloud.spanner_dbapi"
|
|
|
|
"google.cloud.spanner_v1"
|
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2021-01-09 10:05:03 +00:00
|
|
|
description = "Cloud Spanner API client library";
|
|
|
|
homepage = "https://github.com/googleapis/python-spanner";
|
2022-12-17 10:02:37 +00:00
|
|
|
changelog = "https://github.com/googleapis/python-spanner/blob/v${version}/CHANGELOG.md";
|
2021-01-09 10:05:03 +00:00
|
|
|
license = licenses.asl20;
|
2023-08-04 22:07:22 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2021-01-09 10:05:03 +00:00
|
|
|
};
|
|
|
|
}
|