mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, google-api-core
|
|
, google-cloud-core
|
|
, grpc-google-iam-v1
|
|
, libcst
|
|
, mock
|
|
, proto-plus
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-cloud-bigtable";
|
|
version = "2.10.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-f4wMYlmex0QrcJrl33VyOZgbURYnIjeWDR7rz4MzMJw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
google-api-core
|
|
google-cloud-core
|
|
grpc-google-iam-v1
|
|
libcst
|
|
proto-plus
|
|
];
|
|
|
|
checkInputs = [
|
|
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 = with lib; {
|
|
description = "Google Cloud Bigtable API client library";
|
|
homepage = "https://github.com/googleapis/python-bigtable";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ costrouc ];
|
|
};
|
|
}
|