python3Packages.azure-mgmt-imagebuilder: 0.4.0 -> 1.0.0

This commit is contained in:
Jonathan Ringer 2022-01-13 14:17:54 -08:00 committed by Jonathan Ringer
parent a016562891
commit 7a254a7fc8

View File

@ -1,26 +1,36 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
, azure-common
, azure-mgmt-core
, msrest
, msrestazure
}:
buildPythonPackage rec {
version = "0.4.0";
version = "1.0.0";
pname = "azure-mgmt-imagebuilder";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "4c9291bf16b40b043637e5e4f15650f71418ac237393e62219cab478a7951733";
sha256 = "634e398de9a23e712aa27a4a59f9ea5d5091d1dfcfed5ac977230918872c4430";
extension = "zip";
};
propagatedBuildInputs = [ azure-common msrest msrestazure ];
propagatedBuildInputs = [
azure-common
azure-mgmt-core
msrest
msrestazure
];
# no tests included
doCheck = false;
pythonImportsCheck = [ "azure.common" "azure.mgmt.imagebuilder" ];
pythonImportsCheck = [
"azure.common"
"azure.mgmt.core"
"azure.mgmt.imagebuilder"
];
meta = with lib; {
description = "Microsoft Azure Image Builder Client Library for Python";