lol
0
fork

Configure Feed

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

python312Packages.azure-keyvault-keys: foramt with nixfmt

+13 -16
+13 -16
pkgs/development/python-modules/azure-keyvault-keys/default.nix
··· 1 - { lib 2 - , azure-common 3 - , azure-core 4 - , buildPythonPackage 5 - , cryptography 6 - , fetchPypi 7 - , isodate 8 - , pythonOlder 9 - , setuptools 10 - , typing-extensions 1 + { 2 + lib, 3 + azure-common, 4 + azure-core, 5 + buildPythonPackage, 6 + cryptography, 7 + fetchPypi, 8 + isodate, 9 + pythonOlder, 10 + setuptools, 11 + typing-extensions, 11 12 }: 12 13 13 14 buildPythonPackage rec { ··· 22 23 hash = "sha256-CGMtzW7OKGVyBOmiVq1kNp/isOOF7UM0n5MvAH2J93Q="; 23 24 }; 24 25 25 - build-system = [ 26 - setuptools 27 - ]; 26 + build-system = [ setuptools ]; 28 27 29 28 dependencies = [ 30 29 azure-common ··· 34 33 typing-extensions 35 34 ]; 36 35 37 - pythonNamespaces = [ 38 - "azure.keyvault" 39 - ]; 36 + pythonNamespaces = [ "azure.keyvault" ]; 40 37 41 38 # Tests require relative paths to utilities in the mono-repo 42 39 doCheck = false;