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

python311Packages.azure-mgmt-containerregistry: 10.1.0 -> 10.2.0
This commit is contained in:
Fabian Affolter 2023-10-30 08:19:32 +01:00 committed by GitHub
commit 059348710f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};