about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cu2qu/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/cu2qu/default.nix')
-rw-r--r--pkgs/development/python-modules/cu2qu/default.nix37
1 files changed, 18 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/cu2qu/default.nix b/pkgs/development/python-modules/cu2qu/default.nix
index 67315205b7061..27faeab92bd43 100644
--- a/pkgs/development/python-modules/cu2qu/default.nix
+++ b/pkgs/development/python-modules/cu2qu/default.nix
@@ -1,18 +1,19 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-
-# build
-, cython
-, setuptools-scm
-, setuptools
-
-# propagates
-, defcon
-, fonttools
-
-# tests
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+
+  # build
+  cython,
+  setuptools-scm,
+  setuptools,
+
+  # propagates
+  defcon,
+  fonttools,
+
+  # tests
+  pytestCheckHook,
 }:
 
 let
@@ -40,9 +41,7 @@ buildPythonPackage rec {
     fonttools
   ] ++ fonttools.optional-dependencies.ufo;
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   meta = with lib; {
     changelog = "https://github.com/googlefonts/cu2qu/releases/tag/v${version}";
@@ -50,6 +49,6 @@ buildPythonPackage rec {
     mainProgram = "cu2qu";
     homepage = "https://github.com/googlefonts/cu2qu";
     license = licenses.asl20;
-    maintainers = with maintainers; [ ];
+    maintainers = [ ];
   };
 }