Merge pull request #290961 from fabaff/google-cloud-artifact-registry-bump

python311Packages.google-cloud-artifact-registry: 1.11.1 -> 1.11.2
This commit is contained in:
Fabian Affolter 2024-02-27 16:38:49 +01:00 committed by GitHub
commit e5cfb0c222
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,27 +1,38 @@
{ buildPythonPackage
, fetchPypi
, google-api-core
, google-auth
, grpc-google-iam-v1
, lib
, proto-plus
, protobuf
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "google-cloud-artifact-registry";
version = "1.11.1";
format = "setuptools";
version = "1.11.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-EjwBVYq7V39ab/VQEmysfiuwEbMkjCXq5o+jM31NrwI=";
hash = "sha256-5ASS7Lt6F7dWBhc82bW+0FBSDCePax2YF5hr+BAGabs=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
google-api-core
google-auth
grpc-google-iam-v1
proto-plus
protobuf
] ++ google-api-core.optional-dependencies.grpc;
nativeCheckInputs = [