about summary refs log tree commit diff
path: root/pkgs/development/python-modules/jamo/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/jamo/default.nix')
-rw-r--r--pkgs/development/python-modules/jamo/default.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/jamo/default.nix b/pkgs/development/python-modules/jamo/default.nix
index 058df62cb0419..cccd9fe6c3463 100644
--- a/pkgs/development/python-modules/jamo/default.nix
+++ b/pkgs/development/python-modules/jamo/default.nix
@@ -1,7 +1,8 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -16,13 +17,9 @@ buildPythonPackage rec {
     hash = "sha256-QHI3Rqf1aQOsW49A/qnIwRnPuerbtyerf+eWIiEvyho=";
   };
 
-  pythonImportsCheck = [
-    "jamo"
-  ];
+  pythonImportsCheck = [ "jamo" ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   meta = with lib; {
     changelog = "https://github.com/JDongian/python-jamo/releases/tag/v${version}";