60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, google-api-core
|
|
, google-cloud-core
|
|
, libcst
|
|
, proto-plus
|
|
, mock
|
|
, pytestCheckHook
|
|
, pytest-asyncio
|
|
, google-cloud-testutils
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-cloud-datastore";
|
|
version = "2.1.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-56UQdZudVf9jyYPjxCy/XDX5tzEPTWEevjaX2mV2vLQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
google-api-core
|
|
google-cloud-core
|
|
libcst
|
|
proto-plus
|
|
];
|
|
|
|
checkInputs = [
|
|
google-cloud-testutils
|
|
mock
|
|
pytestCheckHook
|
|
pytest-asyncio
|
|
];
|
|
|
|
preCheck = ''
|
|
# directory shadows imports
|
|
rm -r google
|
|
'';
|
|
|
|
disabledTestPaths = [
|
|
# Requires credentials
|
|
"tests/system/test_system.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"google.cloud.datastore"
|
|
"google.cloud.datastore_admin_v1"
|
|
"google.cloud.datastore_v1"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Google Cloud Datastore API client library";
|
|
homepage = "https://github.com/googleapis/python-datastore";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|