python3Packages.google-cloud-datastore: 2.24.0 -> 2.25.0 (#529245)

This commit is contained in:
Fabian Affolter
2026-06-07 21:52:07 +00:00
committed by GitHub
@@ -14,22 +14,20 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "google-cloud-datastore";
version = "2.24.0";
version = "2.25.0";
pyproject = true;
src = fetchPypi {
pname = "google_cloud_datastore";
inherit version;
hash = "sha256-8IfAKmqkrGi78X8MBIrj7jVYVr8JxRQ5v7oZN0E4d5I=";
inherit (finalAttrs) version;
hash = "sha256-3WRqPY+ZwnULtfbg8Y7Oe+2V/XbgLayt2/o1orIjKP8=";
};
build-system = [ setuptools ];
pythonRelaxDeps = [
"protobuf"
];
pythonRelaxDeps = [ "protobuf" ];
dependencies = [
google-api-core
@@ -74,8 +72,8 @@ buildPythonPackage rec {
meta = {
description = "Google Cloud Datastore API client library";
homepage = "https://github.com/googleapis/python-datastore";
changelog = "https://github.com/googleapis/python-datastore/blob/v${version}/CHANGELOG.md";
changelog = "https://github.com/googleapis/python-datastore/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
})