python312Packages.azure-keyvault-keys: foramt with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-16 12:48:12 +02:00
parent 6dd0f5dfc3
commit d1a9f32eac
1 changed files with 13 additions and 16 deletions

View File

@ -1,13 +1,14 @@
{ lib
, azure-common
, azure-core
, buildPythonPackage
, cryptography
, fetchPypi
, isodate
, pythonOlder
, setuptools
, typing-extensions
{
lib,
azure-common,
azure-core,
buildPythonPackage,
cryptography,
fetchPypi,
isodate,
pythonOlder,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
@ -22,9 +23,7 @@ buildPythonPackage rec {
hash = "sha256-CGMtzW7OKGVyBOmiVq1kNp/isOOF7UM0n5MvAH2J93Q=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
azure-common
@ -34,9 +33,7 @@ buildPythonPackage rec {
typing-extensions
];
pythonNamespaces = [
"azure.keyvault"
];
pythonNamespaces = [ "azure.keyvault" ];
# Tests require relative paths to utilities in the mono-repo
doCheck = false;