2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
2021-01-09 10:05:03 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2023-01-11 07:51:40 +00:00
|
|
|
, google-api-core
|
2021-01-09 10:05:03 +00:00
|
|
|
, google-cloud-core
|
|
|
|
, google-cloud-testutils
|
2023-01-11 07:51:40 +00:00
|
|
|
, grpc-google-iam-v1
|
2021-01-09 10:05:03 +00:00
|
|
|
, libcst
|
|
|
|
, mock
|
|
|
|
, proto-plus
|
2023-01-11 07:51:40 +00:00
|
|
|
, protobuf
|
2021-01-09 10:05:03 +00:00
|
|
|
, pytest-asyncio
|
2023-01-11 07:51:40 +00:00
|
|
|
, pytestCheckHook
|
2022-09-30 11:47:45 +00:00
|
|
|
, pythonOlder
|
2023-01-11 07:51:40 +00:00
|
|
|
, sqlparse
|
2021-01-09 10:05:03 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "google-cloud-spanner";
|
2023-08-10 07:59:29 +00:00
|
|
|
version = "3.40.0";
|
2022-09-30 11:47:45 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2021-01-09 10:05:03 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-08-10 07:59:29 +00:00
|
|
|
hash = "sha256-+dBve2hfb9paeIPlqY//VdXvnBq3tze4NiShNfrXgM0=";
|
2021-01-09 10:05:03 +00:00
|
|
|
};
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
propagatedBuildInputs = [
|
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
|
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 = {
|
|
|
|
libcst = [
|
|
|
|
libcst
|
|
|
|
];
|
|
|
|
};
|
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
|
|
|
};
|
|
|
|
}
|