about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wunsen/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/wunsen/default.nix')
-rw-r--r--pkgs/development/python-modules/wunsen/default.nix47
1 files changed, 22 insertions, 25 deletions
diff --git a/pkgs/development/python-modules/wunsen/default.nix b/pkgs/development/python-modules/wunsen/default.nix
index 5fc6ea2d3803e..9f6d12c9f3d48 100644
--- a/pkgs/development/python-modules/wunsen/default.nix
+++ b/pkgs/development/python-modules/wunsen/default.nix
@@ -1,14 +1,15 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
 
-, pythonOlder
+  pythonOlder,
 
-, unittestCheckHook
+  unittestCheckHook,
 
-, hatchling
+  hatchling,
 
-, khanaa
+  khanaa,
 }:
 
 buildPythonPackage rec {
@@ -25,28 +26,24 @@ buildPythonPackage rec {
     hash = "sha256-lMEhtcWG+S3vAz+Y/qDxhaZslsO0pbs5xUn5QgZNs2U=";
   };
 
-  build-system = [
-    hatchling
-  ];
+  build-system = [ hatchling ];
 
-  dependencies = [
-    khanaa
-  ];
+  dependencies = [ khanaa ];
 
-  nativeCheckInputs = [
-    unittestCheckHook
-  ];
+  nativeCheckInputs = [ unittestCheckHook ];
 
-  unittestFlagsArray = [ "-s" "tests" ];
+  unittestFlagsArray = [
+    "-s"
+    "tests"
+  ];
 
   pythonImportsCheck = [ "wunsen" ];
 
-  meta = with lib;
-    {
-      description = "Transliterate/transcribe other languages into Thai Topics";
-      homepage = "https://github.com/cakimpei/wunsen";
-      changelog = "https://github.com/cakimpei/wunsen/releases/tag/v${version}";
-      license = licenses.mit;
-      maintainers = with maintainers; [ vizid ];
-    };
+  meta = with lib; {
+    description = "Transliterate/transcribe other languages into Thai Topics";
+    homepage = "https://github.com/cakimpei/wunsen";
+    changelog = "https://github.com/cakimpei/wunsen/releases/tag/v${version}";
+    license = licenses.mit;
+    maintainers = with maintainers; [ vizid ];
+  };
 }