lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

python311Packages.google-cloud-artifact-registry: 1.8.4 -> 1.9.0

authored by

Fabian Affolter and committed by
GitHub
80ba19c4 0c08ce94

+7 -4
+7 -4
pkgs/development/python-modules/google-cloud-artifact-registry/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "google-cloud-artifact-registry"; 12 - version = "1.8.3"; 12 + version = "1.9.0"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-kgbSwGR5ObkMbup4p4ePXnxl7uRn0nYeGCOU1LMPZSE="; 19 + hash = "sha256-NITSosBPrfpIC+FqVU0B5H5MT0taEjzTcl6GW03X8yU="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ ··· 24 24 grpc-google-iam-v1 25 25 ] ++ google-api-core.optional-dependencies.grpc; 26 26 27 - nativeCheckInputs = [ pytestCheckHook ]; 27 + nativeCheckInputs = [ 28 + pytestCheckHook 29 + ]; 28 30 29 31 pythonImportsCheck = [ 30 32 "google.cloud.artifactregistry" ··· 34 36 35 37 meta = with lib; { 36 38 description = "Google Cloud Artifact Registry API client library"; 37 - homepage = "https://github.com/googleapis/google-cloud-python"; 39 + homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-artifact-registry"; 40 + changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-artifact-registry-v${version}/packages/google-cloud-artifact-registry/CHANGELOG.md"; 38 41 license = licenses.asl20; 39 42 maintainers = with maintainers; [ samuela ]; 40 43 };