about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyarrow-hotfix/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyarrow-hotfix/default.nix')
-rw-r--r--pkgs/development/python-modules/pyarrow-hotfix/default.nix19
1 files changed, 8 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/pyarrow-hotfix/default.nix b/pkgs/development/python-modules/pyarrow-hotfix/default.nix
index 38a8dc4b6ea85..ec0cf110311bd 100644
--- a/pkgs/development/python-modules/pyarrow-hotfix/default.nix
+++ b/pkgs/development/python-modules/pyarrow-hotfix/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, hatchling
-, pythonOlder
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  hatchling,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
@@ -19,13 +20,9 @@ buildPythonPackage rec {
     hash = "sha256-LlSbxIxvouzvlP6PB8J8fJaxWoRbxz4wTs7Gb5LbM4A=";
   };
 
-  nativeBuildInputs = [
-    hatchling
-  ];
+  nativeBuildInputs = [ hatchling ];
 
-  pythonImportsCheck = [
-    "pyarrow_hotfix"
-  ];
+  pythonImportsCheck = [ "pyarrow_hotfix" ];
 
   meta = with lib; {
     description = "Hotfix for the PyArrow security vulnerability CVE-2023-47248";