Unverified Commit 05934871 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #263578 from fabaff/azure-mgmt-containerregistry-bump

python311Packages.azure-mgmt-containerregistry: 10.1.0 -> 10.2.0
parents 65c2538b 42782fdf
Loading
Loading
Loading
Loading
+6 −9
Original line number Diff line number Diff line
@@ -4,29 +4,25 @@
, pythonOlder
, azure-common
, azure-mgmt-core
, msrest
, typing-extensions
, isodate
}:

buildPythonPackage rec {
  pname = "azure-mgmt-containerregistry";
  version = "10.1.0";
  version = "10.2.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";
  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-VrX9YfYNvlA8+eNqHCp35BAeQZzQKakZs7ZZKwT8oYc=";
    extension = "zip";
    hash = "sha256-i7i/5ofGxiF9/wTAPnUOaZ6FAgK3EaBqoHeSC8HuXCo=";
  };

  propagatedBuildInputs = [
    azure-common
    azure-mgmt-core
    msrest
  ] ++ lib.optionals (pythonOlder "3.8") [
    typing-extensions
    isodate
  ];

  # no tests included
@@ -40,6 +36,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Microsoft Azure Container Registry Client Library for Python";
    homepage = "https://github.com/Azure/azure-sdk-for-python";
    changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-containerregistry_${version}/sdk/containerregistry/azure-mgmt-containerregistry/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ jonringer ];
  };