python3Packages.google-cloud-bigtable: 2.30.0 -> 2.30.1 (#403423)

Changed files
+26 -17
pkgs
development
python-modules
google-cloud-bigtable
+26 -17
pkgs/development/python-modules/google-cloud-bigtable/default.nix
···
{
lib,
buildPythonPackage,
-
fetchPypi,
google-api-core,
google-cloud-core,
-
grpcio,
grpc-google-iam-v1,
-
libcst,
-
mock,
proto-plus,
protobuf,
pytestCheckHook,
-
pythonOlder,
-
setuptools,
}:
buildPythonPackage rec {
pname = "google-cloud-bigtable";
-
version = "2.30.0";
-
pyproject = true;
-
disabled = pythonOlder "3.7";
-
src = fetchPypi {
-
pname = "google_cloud_bigtable";
-
inherit version;
-
hash = "sha256-3bnfW9OVhUWf5hfzheSCeAY+w3VIalER0i3QtsGNSDM=";
-
};
build-system = [ setuptools ];
dependencies = [
google-api-core
google-cloud-core
grpc-google-iam-v1
proto-plus
protobuf
···
"google.cloud.bigtable"
];
-
meta = with lib; {
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 = [ ];
};
}
···
{
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.30.1";
+
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
···
"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/v${version}/CHANGELOG.md";
+
license = lib.licenses.asl20;
+
maintainers = [ lib.maintainers.sarahec ];
};
}