python311Packages.azure-mgmt-imagebuilder: 1.2.0 -> 1.3.0

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-imagebuilder_1.3.0/sdk/compute/azure-mgmt-imagebuilder/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2024-01-06 12:08:41 +01:00
parent cce535b9d6
commit d61251d975

View File

@ -1,30 +1,36 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
{ lib
, azure-common
, azure-mgmt-core
, msrest
, msrestazure
, buildPythonPackage
, fetchPypi
, isodate
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
version = "1.2.0";
format = "setuptools";
pname = "azure-mgmt-imagebuilder";
disabled = isPy27;
version = "1.3.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-XmGIzw+yGYgdaNGZJClFRl531BGsQUH+HESUXGVK6TI=";
extension = "zip";
hash = "sha256-PzJdaIthJcL6kmgeWxjqQHugMtW+P3wHJEBtcz5sFO8=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
azure-common
azure-mgmt-core
msrest
msrestazure
isodate
];
# no tests included
# No tests included
doCheck = false;
pythonImportsCheck = [
@ -35,7 +41,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Microsoft Azure Image Builder Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/compute/azure-mgmt-imagebuilder";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-imagebuilder_${version}/sdk/compute/azure-mgmt-imagebuilder/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};