about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyrect/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyrect/default.nix')
-rw-r--r--pkgs/development/python-modules/pyrect/default.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/pyrect/default.nix b/pkgs/development/python-modules/pyrect/default.nix
index 0d61a2e182a0..3b673068adaa 100644
--- a/pkgs/development/python-modules/pyrect/default.nix
+++ b/pkgs/development/python-modules/pyrect/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pytestCheckHook
-, pygame
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  pytestCheckHook,
+  pygame,
 }:
 
 buildPythonPackage rec {
@@ -16,7 +17,10 @@ buildPythonPackage rec {
     hash = "sha256-9lFV9t+bkptnyv+9V8CUfFrlRJ07WA0XgHS/+0egm3g=";
   };
 
-  nativeCheckInputs = [ pytestCheckHook pygame ];
+  nativeCheckInputs = [
+    pytestCheckHook
+    pygame
+  ];
 
   preCheck = ''
     export LC_ALL="en_US.UTF-8"