about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-05-20 08:46:12 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-05-20 08:46:12 +0200
commit8c656077f84449470b9a415c6eef5f06a60c4dc0 (patch)
treed90b801315892d9f7dff90089eeeefd2f17ffbd7 /pkgs
parent11c9320791c85daec91c1a84ae1232897e5a00d0 (diff)
python312Packages.azure-storage-file-share: format with nixfmt
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/azure-storage-file-share/default.nix29
1 files changed, 13 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/azure-storage-file-share/default.nix b/pkgs/development/python-modules/azure-storage-file-share/default.nix
index 40976f70c791c..1f47df6c9e73d 100644
--- a/pkgs/development/python-modules/azure-storage-file-share/default.nix
+++ b/pkgs/development/python-modules/azure-storage-file-share/default.nix
@@ -1,13 +1,14 @@
-{ lib
-, azure-core
-, buildPythonPackage
-, cryptography
-, fetchPypi
-, isodate
-, msrest
-, pythonOlder
-, setuptools
-, typing-extensions
+{
+  lib,
+  azure-core,
+  buildPythonPackage,
+  cryptography,
+  fetchPypi,
+  isodate,
+  msrest,
+  pythonOlder,
+  setuptools,
+  typing-extensions,
 }:
 
 buildPythonPackage rec {
@@ -22,9 +23,7 @@ buildPythonPackage rec {
     hash = "sha256-QS+35sPCj29yKvmBlapZQHqqMjI6+hOkoB9i0Lh3TrM=";
   };
 
-  build-system = [
-    setuptools
-  ];
+  build-system = [ setuptools ];
 
   dependencies = [
     azure-core
@@ -34,9 +33,7 @@ buildPythonPackage rec {
   ];
 
   passthru.optional-dependencies = {
-    aio = [
-      azure-core
-    ] ++ azure-core.optional-dependencies.aio;
+    aio = [ azure-core ] ++ azure-core.optional-dependencies.aio;
   };
 
   # Tests require checkout from monorepo