about summary refs log tree commit diff
path: root/pkgs/development/python-modules/xlrd/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/xlrd/default.nix')
-rw-r--r--pkgs/development/python-modules/xlrd/default.nix14
1 files changed, 6 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/xlrd/default.nix b/pkgs/development/python-modules/xlrd/default.nix
index ce17ca1502ad..d5a98d170ab5 100644
--- a/pkgs/development/python-modules/xlrd/default.nix
+++ b/pkgs/development/python-modules/xlrd/default.nix
@@ -1,7 +1,8 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -14,9 +15,7 @@ buildPythonPackage rec {
     sha256 = "f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88";
   };
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   # No tests in archive
   doCheck = false;
@@ -27,5 +26,4 @@ buildPythonPackage rec {
     mainProgram = "runxlrd.py";
     license = licenses.bsd0;
   };
-
 }