python312Packages.azure-mgmt-appconfiguration: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-10 09:22:12 +02:00
parent cdab9473ac
commit d1d7c64acb

View File

@ -1,11 +1,12 @@
{ lib {
, azure-common lib,
, azure-mgmt-core azure-common,
, buildPythonPackage azure-mgmt-core,
, fetchPypi buildPythonPackage,
, isodate fetchPypi,
, pythonOlder isodate,
, setuptools pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -21,9 +22,7 @@ buildPythonPackage rec {
extension = "zip"; extension = "zip";
}; };
nativeBuildInputs = [ nativeBuildInputs = [ setuptools ];
setuptools
];
propagatedBuildInputs = [ propagatedBuildInputs = [
azure-common azure-common
@ -36,7 +35,10 @@ buildPythonPackage rec {
pythonNamespaces = [ "azure.mgmt" ]; pythonNamespaces = [ "azure.mgmt" ];
pythonImportsCheck = [ "azure.common" "azure.mgmt.appconfiguration" ]; pythonImportsCheck = [
"azure.common"
"azure.mgmt.appconfiguration"
];
meta = with lib; { meta = with lib; {
description = "Microsoft Azure App Configuration Management Client Library for Python"; description = "Microsoft Azure App Configuration Management Client Library for Python";