Merge pull request #231219 from r-ryantm/auto-update/python310Packages.azure-mgmt-containerinstance

python310Packages.azure-mgmt-containerinstance: 10.0.0 -> 10.1.0
This commit is contained in:
Fabian Affolter 2023-05-11 09:12:17 +02:00 committed by GitHub
commit c631a0b508
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,17 +6,20 @@
, azure-common , azure-common
, azure-mgmt-core , azure-mgmt-core
, azure-mgmt-nspkg , azure-mgmt-nspkg
, isPy3k , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-containerinstance"; pname = "azure-mgmt-containerinstance";
version = "10.0.0"; version = "10.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
hash = "sha256-TDGrC7YO05Ywa8uEINqqw4Wxag65aklIUwS+2aVMHwA="; hash = "sha256-eNQ3rbKFdPRIyDjtXwH5ztN4GWCYBh3rWdn3AxcEwX4=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -24,14 +27,14 @@ buildPythonPackage rec {
msrestazure msrestazure
azure-common azure-common
azure-mgmt-core azure-mgmt-core
] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg
]; ];
# has no tests # has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "azure.mgmt.containerinstance" ]; pythonImportsCheck = [
"azure.mgmt.containerinstance"
];
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Container Instance Client Library"; description = "This is the Microsoft Azure Container Instance Client Library";