2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2021-01-05 14:29:11 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2021-08-16 10:54:23 +00:00
|
|
|
, grpc-google-iam-v1
|
2021-01-06 09:46:48 +00:00
|
|
|
, google-cloud-core
|
|
|
|
, google-cloud-testutils
|
2021-01-05 14:29:11 +00:00
|
|
|
, libcst
|
|
|
|
, mock
|
|
|
|
, proto-plus
|
|
|
|
, pytestCheckHook
|
|
|
|
, pytest-asyncio
|
|
|
|
, sqlparse
|
|
|
|
}:
|
2018-11-02 20:22:03 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "google-cloud-spanner";
|
2022-02-08 08:51:57 +00:00
|
|
|
version = "3.13.0";
|
2018-11-02 20:22:03 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-02-08 08:51:57 +00:00
|
|
|
sha256 = "sha256-Y+MA7Nlx3+8eaBptI6eZgSPGc4MvxSrA9YA+K+VSblw=";
|
2018-11-02 20:22:03 +00:00
|
|
|
};
|
|
|
|
|
2021-06-21 07:09:46 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
google-cloud-core
|
2021-08-16 10:54:23 +00:00
|
|
|
grpc-google-iam-v1
|
2021-06-21 07:09:46 +00:00
|
|
|
libcst
|
|
|
|
proto-plus
|
|
|
|
sqlparse
|
|
|
|
];
|
2018-11-02 20:22:03 +00:00
|
|
|
|
2021-06-21 07:09:46 +00:00
|
|
|
checkInputs = [
|
|
|
|
google-cloud-testutils
|
|
|
|
mock
|
|
|
|
pytestCheckHook
|
|
|
|
pytest-asyncio
|
|
|
|
];
|
2020-11-03 01:17:50 +00:00
|
|
|
|
|
|
|
preCheck = ''
|
2021-01-05 14:29:11 +00:00
|
|
|
# prevent google directory from shadowing google imports
|
2020-03-18 21:38:13 +00:00
|
|
|
rm -r google
|
2018-11-02 20:22:03 +00:00
|
|
|
'';
|
|
|
|
|
2021-06-21 07:09:46 +00:00
|
|
|
disabledTestPaths = [
|
|
|
|
# Requires credentials
|
2021-08-23 11:13:08 +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-21 07:09:46 +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-05 14:29:11 +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-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-11-02 20:22:03 +00:00
|
|
|
description = "Cloud Spanner API client library";
|
2021-01-05 14:29:11 +00:00
|
|
|
homepage = "https://github.com/googleapis/python-spanner";
|
2018-11-02 20:22:03 +00:00
|
|
|
license = licenses.asl20;
|
2021-01-05 14:29:11 +00:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2018-11-02 20:22:03 +00:00
|
|
|
};
|
|
|
|
}
|