2024-05-15 15:35:15 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
deprecated,
|
2024-09-19 14:19:46 +00:00
|
|
|
fetchFromGitHub,
|
2024-05-15 15:35:15 +00:00
|
|
|
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-09-19 14:19:46 +00:00
|
|
|
version = "3.49.1";
|
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
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "googleapis";
|
|
|
|
repo = "python-spanner";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-KwANiuzVyqsz+KKTqNPM1WftuoMtUXRI8xbIdAzZF+s=";
|
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;
|
|
|
|
|
2024-10-04 16:56:33 +00:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
disabledTests = [
|
|
|
|
# Requires credentials
|
|
|
|
"test_list_backup"
|
|
|
|
"test_list_database"
|
|
|
|
"test_list_instance"
|
|
|
|
];
|
|
|
|
|
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"
|
2024-09-19 14:19:46 +00:00
|
|
|
"samples/samples/"
|
2021-06-28 23:13:55 +00:00
|
|
|
];
|
|
|
|
|
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;
|
2024-07-31 10:19:44 +00:00
|
|
|
maintainers = [ ];
|
2021-01-09 10:05:03 +00:00
|
|
|
};
|
|
|
|
}
|