summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-11-02 08:10:26 +0100
committerGitHub <noreply@github.com>2023-11-02 08:10:26 +0100
commita5ad53dad8e0e143ba28573b60d3476a84343d87 (patch)
treeac3f10bc913b36bbb0060320fa47d3c45084d0cd
parentdd6037e8f4040d60d2f6c246a7acb36b9868b751 (diff)
downloadnixpkgs-a5ad53dad8e0e143ba28573b60d3476a84343d87.tar
nixpkgs-a5ad53dad8e0e143ba28573b60d3476a84343d87.tar.gz
nixpkgs-a5ad53dad8e0e143ba28573b60d3476a84343d87.tar.bz2
nixpkgs-a5ad53dad8e0e143ba28573b60d3476a84343d87.tar.lz
nixpkgs-a5ad53dad8e0e143ba28573b60d3476a84343d87.tar.xz
nixpkgs-a5ad53dad8e0e143ba28573b60d3476a84343d87.tar.zst
nixpkgs-a5ad53dad8e0e143ba28573b60d3476a84343d87.zip
python311Packages.agate-excel: equalize content
-rw-r--r--pkgs/development/python-modules/agate-excel/default.nix27
1 files changed, 21 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/agate-excel/default.nix b/pkgs/development/python-modules/agate-excel/default.nix
index 1908d2a796a..03c539a6b8d 100644
--- a/pkgs/development/python-modules/agate-excel/default.nix
+++ b/pkgs/development/python-modules/agate-excel/default.nix
@@ -1,5 +1,11 @@
-{ lib, fetchPypi, buildPythonPackage
-, agate, openpyxl, xlrd, olefile, pytestCheckHook
+{ lib
+, fetchPypi
+, buildPythonPackage
+, agate
+, openpyxl
+, xlrd
+, olefile
+, pytestCheckHook
 }:
 
 buildPythonPackage rec {
@@ -8,14 +14,23 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-IfrbPmQnGh4OMEiWJl16UUfI6X/UWj/p6J2+3Y2DzuM=";
+    hash = "sha256-IfrbPmQnGh4OMEiWJl16UUfI6X/UWj/p6J2+3Y2DzuM=";
   };
 
-  propagatedBuildInputs = [ agate openpyxl xlrd olefile ];
+  propagatedBuildInputs = [
+    agate
+    openpyxl
+    xlrd
+    olefile
+  ];
 
-  nativeCheckInputs = [ pytestCheckHook ];
+  nativeCheckInputs = [
+    pytestCheckHook
+  ];
 
-  pythonImportsCheck = [ "agate" ];
+  pythonImportsCheck = [
+    "agate"
+  ];
 
   meta = with lib; {
     description = "Adds read support for excel files to agate";