about summary refs log tree commit diff
path: root/pkgs/development/python-modules/gcsa/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/gcsa/default.nix')
-rw-r--r--pkgs/development/python-modules/gcsa/default.nix30
1 files changed, 17 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/gcsa/default.nix b/pkgs/development/python-modules/gcsa/default.nix
index c4ffcabeb94de..c487881f92b45 100644
--- a/pkgs/development/python-modules/gcsa/default.nix
+++ b/pkgs/development/python-modules/gcsa/default.nix
@@ -1,15 +1,16 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pythonOlder
-, pytestCheckHook
-, pyfakefs
-, tzlocal
-, google-api-python-client
-, google-auth-httplib2
-, google-auth-oauthlib
-, python-dateutil
-, beautiful-date
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  pythonOlder,
+  pytestCheckHook,
+  pyfakefs,
+  tzlocal,
+  google-api-python-client,
+  google-auth-httplib2,
+  google-auth-oauthlib,
+  python-dateutil,
+  beautiful-date,
 }:
 
 buildPythonPackage rec {
@@ -34,7 +35,10 @@ buildPythonPackage rec {
     beautiful-date
   ];
 
-  nativeCheckInputs = [ pytestCheckHook pyfakefs ];
+  nativeCheckInputs = [
+    pytestCheckHook
+    pyfakefs
+  ];
   pythonImportsCheck = [ "gcsa" ];
 
   meta = with lib; {