about summary refs log tree commit diff
path: root/pkgs/development/python-modules/jsmin/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/jsmin/default.nix')
-rw-r--r--pkgs/development/python-modules/jsmin/default.nix25
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/jsmin/default.nix b/pkgs/development/python-modules/jsmin/default.nix
index a36c350264be..3a15b321e5cd 100644
--- a/pkgs/development/python-modules/jsmin/default.nix
+++ b/pkgs/development/python-modules/jsmin/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pytestCheckHook
-, pythonOlder
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  pytestCheckHook,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
@@ -17,22 +18,16 @@ buildPythonPackage rec {
     sha256 = "c0959a121ef94542e807a674142606f7e90214a2b3d1eb17300244bbb5cc2bfc";
   };
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
-  pytestFlagsArray = [
-    "jsmin/test.py"
-  ];
+  pytestFlagsArray = [ "jsmin/test.py" ];
 
-  pythonImportsCheck = [
-    "jsmin"
-  ];
+  pythonImportsCheck = [ "jsmin" ];
 
   meta = with lib; {
     description = "JavaScript minifier";
     homepage = "https://github.com/tikitu/jsmin/";
     license = licenses.mit;
-    maintainers = with maintainers; [ ];
+    maintainers = [ ];
   };
 }