about summary refs log tree commit diff
path: root/pkgs/development/python-modules/xmod/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/xmod/default.nix')
-rw-r--r--pkgs/development/python-modules/xmod/default.nix29
1 files changed, 11 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/xmod/default.nix b/pkgs/development/python-modules/xmod/default.nix
index d5ba4bf1a322..34b197579c3e 100644
--- a/pkgs/development/python-modules/xmod/default.nix
+++ b/pkgs/development/python-modules/xmod/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, poetry-core
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  poetry-core,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -17,27 +18,19 @@ buildPythonPackage rec {
     hash = "sha256-pfFxtDQ4kaBrx4XzYMQO1vE4dUr2zs8jgGUQUdXB798=";
   };
 
-  build-system = [
-    poetry-core
-  ];
+  build-system = [ poetry-core ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
-  disabledTests = [
-    "test_partial_function"
-  ];
+  disabledTests = [ "test_partial_function" ];
 
-  pythonImportsCheck = [
-    "xmod"
-  ];
+  pythonImportsCheck = [ "xmod" ];
 
   meta = with lib; {
     description = "Turn any object into a module";
     homepage = "https://github.com/rec/xmod";
     changelog = "https://github.com/rec/xmod/blob/${src.rev}/CHANGELOG";
     license = licenses.mit;
-    maintainers = with maintainers; [ ];
+    maintainers = [ ];
   };
 }