82 lines
1.5 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
google-api-core,
google-cloud-core,
google-crc32c,
grpc-google-iam-v1,
proto-plus,
protobuf,
# optional dependencies
libcst,
# testing
grpcio,
mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "google-cloud-bigtable";
version = "2.32.0";
src = fetchFromGitHub {
owner = "googleapis";
repo = "python-bigtable";
tag = "v${version}";
hash = "sha256-9yU0xNh5GuVbQuAmoFEHJBmHCVvFOOxEw+b/3B9O1OY=";
};
pyproject = true;
build-system = [ setuptools ];
dependencies = [
google-api-core
google-cloud-core
google-crc32c
grpc-google-iam-v1
proto-plus
protobuf
]
++ google-api-core.optional-dependencies.grpc;
optional-dependencies = {
libcst = [ libcst ];
};
nativeCheckInputs = [
grpcio
mock
pytestCheckHook
];
checkPhase = ''
# Prevent google directory from shadowing google imports
rm -r google
'';
disabledTests = [ "policy" ];
pythonImportsCheck = [
"google.cloud.bigtable_admin_v2"
"google.cloud.bigtable_v2"
"google.cloud.bigtable"
];
meta = {
description = "Google Cloud Bigtable API client library";
homepage = "https://github.com/googleapis/python-bigtable";
changelog = "https://github.com/googleapis/python-bigtable/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.sarahec ];
};
}