2021-01-05 14:29:11 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, grpc_google_iam_v1
|
|
|
|
, google_cloud_core
|
|
|
|
, google_cloud_testutils
|
|
|
|
, libcst
|
|
|
|
, mock
|
|
|
|
, proto-plus
|
|
|
|
, pytestCheckHook
|
|
|
|
, pytest-asyncio
|
|
|
|
, sqlparse
|
|
|
|
}:
|
2018-11-02 20:22:03 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "google-cloud-spanner";
|
2021-01-05 14:29:11 +00:00
|
|
|
version = "2.1.0";
|
2018-11-02 20:22:03 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-05 14:29:11 +00:00
|
|
|
sha256 = "0mkkx6l3cbwfwng12zpisbv6m919fkhdb48xk24ayc19193bi86n";
|
2018-11-02 20:22:03 +00:00
|
|
|
};
|
|
|
|
|
2021-01-05 14:29:11 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace '"proto-plus == 1.11.0"' '"proto-plus"'
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ google_cloud_core grpc_google_iam_v1 libcst proto-plus sqlparse ];
|
2018-11-02 20:22:03 +00:00
|
|
|
|
2021-01-05 14:29:11 +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
|
2021-01-05 14:29:11 +00:00
|
|
|
# disable tests which require credentials
|
|
|
|
rm tests/system/test_{system,system_dbapi}.py
|
|
|
|
rm tests/unit/spanner_dbapi/test_{connect,connection,cursor}.py
|
2018-11-02 20:22:03 +00:00
|
|
|
'';
|
|
|
|
|
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"
|
|
|
|
];
|
|
|
|
|
2018-11-02 20:22:03 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|