about summary refs log tree commit diff
path: root/pkgs/development/python-modules/xdg/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/xdg/default.nix')
-rw-r--r--pkgs/development/python-modules/xdg/default.nix23
1 files changed, 10 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/xdg/default.nix b/pkgs/development/python-modules/xdg/default.nix
index 065f434bd7ee4..4a2efae3a8fb8 100644
--- a/pkgs/development/python-modules/xdg/default.nix
+++ b/pkgs/development/python-modules/xdg/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pythonOlder
-, clikit
-, poetry-core
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  pythonOlder,
+  clikit,
+  poetry-core,
 }:
 
 buildPythonPackage rec {
@@ -22,21 +23,17 @@ buildPythonPackage rec {
 
   nativeBuildInputs = [ poetry-core ];
 
-  propagatedBuildInputs = [
-    clikit
-  ];
+  propagatedBuildInputs = [ clikit ];
 
   # sdist has no tests
   doCheck = false;
 
-  pythonImportsCheck = [
-    "xdg"
-  ];
+  pythonImportsCheck = [ "xdg" ];
 
   meta = with lib; {
     description = "XDG Base Directory Specification for Python";
     homepage = "https://github.com/srstevenson/xdg";
     license = licenses.isc;
-    maintainers = with maintainers; [ jonringer ];
+    maintainers = [ ];
   };
 }