Merge pull request #177506 from r-ryantm/auto-update/python310Packages.azure-mgmt-logic

python310Packages.azure-mgmt-logic: 9.0.0 -> 10.0.0
This commit is contained in:
Fabian Affolter 2022-06-14 00:01:58 +02:00 committed by GitHub
commit d313ae7e85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,17 +5,20 @@
, msrestazure , msrestazure
, azure-common , azure-common
, azure-mgmt-core , azure-mgmt-core
, azure-mgmt-nspkg , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-logic"; pname = "azure-mgmt-logic";
version = "9.0.0"; version = "10.0.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
sha256 = "d3a780d299c4db59134bd984c4c9281b9b6ae5d4ba185bcbae43f6c3af04f85a"; hash = "sha256-s/pIZPFKqnr0HXeNkl8FHtKbYBb0Y0R2Xs0PSdDwTdY=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -23,12 +26,14 @@ buildPythonPackage rec {
msrestazure msrestazure
azure-common azure-common
azure-mgmt-core azure-mgmt-core
azure-mgmt-nspkg
]; ];
# has no tests # Module has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "azure.mgmt.logic" ];
pythonImportsCheck = [
"azure.mgmt.logic"
];
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Logic Apps Management Client Library"; description = "This is the Microsoft Azure Logic Apps Management Client Library";