python3Packages.google-cloud-bigtable: 2.30.0 -> 2.30.1

python3Packages.google-cloud-bigtable: add missing build dependency #zhf
This commit is contained in:
Sarah Clark
2025-05-02 13:28:13 -07:00
parent 87d5e58aad
commit fc077d0d1f
@@ -1,38 +1,47 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
google-api-core,
google-cloud-core,
grpcio,
google-crc32c,
grpc-google-iam-v1,
libcst,
mock,
proto-plus,
protobuf,
# optional dependencies
libcst,
# testing
grpcio,
mock,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "google-cloud-bigtable";
version = "2.30.0";
pyproject = true;
version = "2.30.1";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "google_cloud_bigtable";
inherit version;
hash = "sha256-3bnfW9OVhUWf5hfzheSCeAY+w3VIalER0i3QtsGNSDM=";
src = fetchFromGitHub {
owner = "googleapis";
repo = "python-bigtable";
tag = "v${version}";
hash = "sha256-TciCYpnwfIIvOexp4Ing6grZ7ufFonwP2G26UzlNaJ4=";
};
pyproject = true;
build-system = [ setuptools ];
dependencies = [
google-api-core
google-cloud-core
google-crc32c
grpc-google-iam-v1
proto-plus
protobuf
@@ -61,11 +70,11 @@ buildPythonPackage rec {
"google.cloud.bigtable"
];
meta = with lib; {
meta = {
description = "Google Cloud Bigtable API client library";
homepage = "https://github.com/googleapis/python-bigtable";
changelog = "https://github.com/googleapis/python-bigtable/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = [ ];
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.sarahec ];
};
}