about summary refs log tree commit diff
path: root/pkgs/development/python-modules/tdir/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/tdir/default.nix')
-rw-r--r--pkgs/development/python-modules/tdir/default.nix29
1 files changed, 12 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/tdir/default.nix b/pkgs/development/python-modules/tdir/default.nix
index 644adda75ff0e..c00e0b3f0bc5d 100644
--- a/pkgs/development/python-modules/tdir/default.nix
+++ b/pkgs/development/python-modules/tdir/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, poetry-core
-, dek
-, xmod
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  poetry-core,
+  dek,
+  xmod,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -19,28 +20,22 @@ buildPythonPackage rec {
     hash = "sha256-YYQ33Blhqk/CbocqkB9Nh6qbzMjQT07fmzx+fDTvdw8=";
   };
 
-  build-system = [
-    poetry-core
-  ];
+  build-system = [ poetry-core ];
 
   dependencies = [
     dek
     xmod
   ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
-  pythonImportsCheck = [
-    "tdir"
-  ];
+  pythonImportsCheck = [ "tdir" ];
 
   meta = with lib; {
     description = "Create, fill a temporary directory";
     homepage = "https://github.com/rec/tdir";
     changelog = "https://github.com/rec/tdir/blob/${src.rev}/CHANGELOG";
     license = licenses.mit;
-    maintainers = with maintainers; [ ];
+    maintainers = [ ];
   };
 }