python312Packages.azure-mgmt-sqlvirtualmachine: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-10 09:55:39 +02:00
parent cd955c18b7
commit 100ec36577

View File

@ -1,12 +1,13 @@
{ lib {
, azure-common lib,
, azure-mgmt-core azure-common,
, buildPythonPackage azure-mgmt-core,
, fetchPypi buildPythonPackage,
, msrest fetchPypi,
, msrestazure msrest,
, pythonOlder msrestazure,
, setuptools pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -22,9 +23,7 @@ buildPythonPackage rec {
extension = "zip"; extension = "zip";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
azure-common azure-common
@ -36,7 +35,10 @@ buildPythonPackage rec {
# no tests included # no tests included
doCheck = false; doCheck = false;
pythonImportsCheck = [ "azure.common" "azure.mgmt.sqlvirtualmachine" ]; pythonImportsCheck = [
"azure.common"
"azure.mgmt.sqlvirtualmachine"
];
meta = with lib; { meta = with lib; {
description = "Microsoft Azure SQL Virtual Machine Management Client Library for Python"; description = "Microsoft Azure SQL Virtual Machine Management Client Library for Python";