Merge pull request #165754 from r-ryantm/auto-update/python310Packages.azure-mgmt-containerservice

python310Packages.azure-mgmt-containerservice: 17.0.0 -> 18.0.0
This commit is contained in:
Fabian Affolter 2022-03-25 19:09:51 +01:00 committed by GitHub
commit f55958c7ca
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-containerservice"; pname = "azure-mgmt-containerservice";
version = "17.0.0"; version = "18.0.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
sha256 = "sha256-oUbWdZryabCCg/gTujchT7p1nS7IDoU5W9MQ4ekJYH8="; sha256 = "sha256-b4AwcnSp6JOtG8VaBbUN7d/NIhHN2TPnyjzCUVhMOzg=";
}; };
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.containerservice" ]; pythonImportsCheck = [
"azure.mgmt.containerservice"
];
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Container Service Management Client Library"; description = "This is the Microsoft Azure Container Service Management Client Library";