lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.azure-multiapi-storage: format with nixfmt

+17 -15
+17 -15
pkgs/development/python-modules/azure-multiapi-storage/default.nix
··· 1 - { lib 2 - , azure-common 3 - , azure-core 4 - , buildPythonPackage 5 - , cryptography 6 - , fetchPypi 7 - , msrest 8 - , msrestazure 9 - , pythonOlder 10 - , requests 11 - , setuptools 1 + { 2 + lib, 3 + azure-common, 4 + azure-core, 5 + buildPythonPackage, 6 + cryptography, 7 + fetchPypi, 8 + msrest, 9 + msrestazure, 10 + pythonOlder, 11 + requests, 12 + setuptools, 12 13 }: 13 14 14 15 buildPythonPackage rec { ··· 23 24 hash = "sha256-CQuoWHeh0EMitTRsvifotrTwpWd/Q9LWWD7jZ2w9r8I="; 24 25 }; 25 26 26 - build-system = [ 27 - setuptools 28 - ]; 27 + build-system = [ setuptools ]; 29 28 30 29 dependencies = [ 31 30 azure-common ··· 42 41 # no tests included 43 42 doCheck = false; 44 43 45 - pythonImportsCheck = [ "azure.common" "azure.multiapi.storage" ]; 44 + pythonImportsCheck = [ 45 + "azure.common" 46 + "azure.multiapi.storage" 47 + ]; 46 48 47 49 meta = with lib; { 48 50 description = "Microsoft Azure Storage Client Library for Python with multi API version support.";