about summary refs log tree commit diff
path: root/pkgs/development/python-modules/apptools/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/apptools/default.nix')
-rw-r--r--pkgs/development/python-modules/apptools/default.nix31
1 files changed, 14 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/apptools/default.nix b/pkgs/development/python-modules/apptools/default.nix
index faaf6bec0796e..60360301a09bb 100644
--- a/pkgs/development/python-modules/apptools/default.nix
+++ b/pkgs/development/python-modules/apptools/default.nix
@@ -1,14 +1,15 @@
-{ lib
-, buildPythonPackage
-, configobj
-, fetchPypi
-, importlib-resources
-, pandas
-, pytestCheckHook
-, pythonOlder
-, tables
-, traits
-, traitsui
+{
+  lib,
+  buildPythonPackage,
+  configobj,
+  fetchPypi,
+  importlib-resources,
+  pandas,
+  pytestCheckHook,
+  pythonOlder,
+  tables,
+  traits,
+  traitsui,
 }:
 
 buildPythonPackage rec {
@@ -27,9 +28,7 @@ buildPythonPackage rec {
     configobj
     traits
     traitsui
-  ] ++ lib.optionals (pythonOlder "3.9") [
-    importlib-resources
-  ];
+  ] ++ lib.optionals (pythonOlder "3.9") [ importlib-resources ];
 
   nativeCheckInputs = [
     tables
@@ -41,9 +40,7 @@ buildPythonPackage rec {
     export HOME=$TMP
   '';
 
-  pythonImportsCheck = [
-    "apptools"
-  ];
+  pythonImportsCheck = [ "apptools" ];
 
   meta = with lib; {
     description = "Set of packages that Enthought has found useful in creating a number of applications";