about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dek/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/dek/default.nix')
-rw-r--r--pkgs/development/python-modules/dek/default.nix33
1 files changed, 13 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/dek/default.nix b/pkgs/development/python-modules/dek/default.nix
index 147cc40e316b..4f528b855133 100644
--- a/pkgs/development/python-modules/dek/default.nix
+++ b/pkgs/development/python-modules/dek/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, poetry-core
-, xmod
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  poetry-core,
+  xmod,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -18,27 +19,19 @@ buildPythonPackage rec {
     hash = "sha256-DYODdImTRCukGmGbkZ+9TQeI9DYaeRd/EHS6VND5IDs=";
   };
 
-  build-system = [
-    poetry-core
-  ];
+  build-system = [ poetry-core ];
 
-  dependencies = [
-    xmod
-  ];
+  dependencies = [ xmod ];
 
-  nativeBuildInputs = [
-    pytestCheckHook
-  ];
+  nativeBuildInputs = [ pytestCheckHook ];
 
-  pythonImportsCheck = [
-    "dek"
-  ];
+  pythonImportsCheck = [ "dek" ];
 
   meta = with lib; {
-    description = "The decorator-decorator";
+    description = "Decorator-decorator";
     homepage = "https://github.com/rec/dek";
     changelog = "https://github.com/rec/dek/blob/${src.rev}/CHANGELOG";
     license = licenses.mit;
-    maintainers = with maintainers; [ ];
+    maintainers = [ ];
   };
 }