about summary refs log tree commit diff
path: root/pkgs/development/python-modules/six/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/six/default.nix')
-rw-r--r--pkgs/development/python-modules/six/default.nix27
1 files changed, 15 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/six/default.nix b/pkgs/development/python-modules/six/default.nix
index afaedae9529ec..89e77586339b7 100644
--- a/pkgs/development/python-modules/six/default.nix
+++ b/pkgs/development/python-modules/six/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, isPyPy
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  isPyPy,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -16,14 +17,16 @@ buildPythonPackage rec {
     sha256 = "1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926";
   };
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
-  pytestFlagsArray = if isPyPy then [
-    # uses ctypes to find native library
-    "--deselect=test_six.py::test_move_items"
-  ] else null;
+  pytestFlagsArray =
+    if isPyPy then
+      [
+        # uses ctypes to find native library
+        "--deselect=test_six.py::test_move_items"
+      ]
+    else
+      null;
 
   pythonImportsCheck = [ "six" ];