python312Packages.azure-multiapi-storage: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-10 10:04:22 +02:00
parent 94c80c749a
commit 9f77c758db

View File

@ -1,14 +1,15 @@
{ lib {
, azure-common lib,
, azure-core azure-common,
, buildPythonPackage azure-core,
, cryptography buildPythonPackage,
, fetchPypi cryptography,
, msrest fetchPypi,
, msrestazure msrest,
, pythonOlder msrestazure,
, requests pythonOlder,
, setuptools requests,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -23,9 +24,7 @@ buildPythonPackage rec {
hash = "sha256-CQuoWHeh0EMitTRsvifotrTwpWd/Q9LWWD7jZ2w9r8I="; hash = "sha256-CQuoWHeh0EMitTRsvifotrTwpWd/Q9LWWD7jZ2w9r8I=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
azure-common azure-common
@ -42,7 +41,10 @@ buildPythonPackage rec {
# no tests included # no tests included
doCheck = false; doCheck = false;
pythonImportsCheck = [ "azure.common" "azure.multiapi.storage" ]; pythonImportsCheck = [
"azure.common"
"azure.multiapi.storage"
];
meta = with lib; { meta = with lib; {
description = "Microsoft Azure Storage Client Library for Python with multi API version support."; description = "Microsoft Azure Storage Client Library for Python with multi API version support.";