about summary refs log tree commit diff
path: root/pkgs/development/python-modules/redbaron/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/redbaron/default.nix')
-rw-r--r--pkgs/development/python-modules/redbaron/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/redbaron/default.nix b/pkgs/development/python-modules/redbaron/default.nix
index 52a3ac5b265e..5938221f7c0d 100644
--- a/pkgs/development/python-modules/redbaron/default.nix
+++ b/pkgs/development/python-modules/redbaron/default.nix
@@ -1,4 +1,10 @@
-{ lib, fetchPypi, buildPythonPackage, baron, pytestCheckHook }:
+{
+  lib,
+  fetchPypi,
+  buildPythonPackage,
+  baron,
+  pytestCheckHook,
+}:
 
 buildPythonPackage rec {
   pname = "redbaron";
@@ -15,7 +21,7 @@ buildPythonPackage rec {
   preCheck = ''
     rm -rf tests/__pycache__
     rm tests/test_bounding_box.py
-  ''; #error about fixtures
+  ''; # error about fixtures
 
   nativeCheckInputs = [ pytestCheckHook ];