Files
nixpkgs/pkgs/development/python-modules/google-cloud-core/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02: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.4.3";
pyproject = true;
src = fetchFromGitHub {
owner = "googleapis";
repo = "python-cloud-core";
tag = "v${version}";
hash = "sha256-hYOtpHIHJVITrei6/0m1YteTog2WBWCUFCl/Zr6BLlc=";
};
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 = with lib; {
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/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = [ ];
};
}