depot/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-datastore/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

63 lines
1.2 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.8.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-AohJ0TAQy3GFALvzqd4i2BiyaCzfTjMMAVIe1ZUZ5eI=";
};
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_allocate_reserve_ids.py"
"tests/system/test_query.py"
"tests/system/test_put.py"
"tests/system/test_read_consistency.py"
"tests/system/test_transaction.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 ];
};
}