Files
nixpkgs/pkgs/development/python-modules/google-cloud-core/default.nix
T
Martin Weinelt 788460171d python3Packages.google-cloud-core: 2.4.3 -> 2.5.0
https://github.com/googleapis/python-cloud-core/blob/v2.5.0/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:11 +01:00

61 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
google-api-core,
google-auth,
grpcio,
grpcio-status,
mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "google-cloud-core";
version = "2.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "googleapis";
repo = "python-cloud-core";
tag = "v${version}";
hash = "sha256-mB0gHxyK+g+e5I/3TRVAyQzPu005ug7fTvRNxciJ9LQ=";
};
build-system = [ setuptools ];
dependencies = [
google-auth
google-api-core
];
optional-dependencies = {
grpc = [
grpcio
grpcio-status
];
};
nativeCheckInputs = [
mock
pytestCheckHook
]
++ optional-dependencies.grpc;
# prevent google directory from shadowing google imports
preCheck = ''
rm -r google
'';
pythonImportsCheck = [ "google.cloud" ];
meta = {
description = "API Client library for Google Cloud: Core Helpers";
homepage = "https://github.com/googleapis/python-cloud-core";
changelog = "https://github.com/googleapis/python-cloud-core/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ ];
};
}