about summary refs log tree commit diff
path: root/pkgs/development/python-modules/mpd2/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/mpd2/default.nix')
-rw-r--r--pkgs/development/python-modules/mpd2/default.nix35
1 files changed, 16 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/mpd2/default.nix b/pkgs/development/python-modules/mpd2/default.nix
index ce87b43c5fb02..3f8b44f5dcf74 100644
--- a/pkgs/development/python-modules/mpd2/default.nix
+++ b/pkgs/development/python-modules/mpd2/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pythonOlder
-, setuptools
-, twisted
-, unittestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  pythonOlder,
+  setuptools,
+  twisted,
+  unittestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -19,26 +20,22 @@ buildPythonPackage rec {
     hash = "sha256-S67DWEzEPtmUjVVZB5+vwmebBrKt4nPpCbNYJlSys/U=";
   };
 
-  nativeBuildInputs = [
-    setuptools
-  ];
+  nativeBuildInputs = [ setuptools ];
 
   passthru.optional-dependencies = {
-    twisted = [
-      twisted
-    ];
+    twisted = [ twisted ];
   };
 
-  nativeCheckInputs = [
-    unittestCheckHook
-  ] ++ passthru.optional-dependencies.twisted;
+  nativeCheckInputs = [ unittestCheckHook ] ++ passthru.optional-dependencies.twisted;
 
   meta = with lib; {
     changelog = "https://github.com/Mic92/python-mpd2/blob/v${version}/doc/changes.rst";
-    description = "A Python client module for the Music Player Daemon";
+    description = "Python client module for the Music Player Daemon";
     homepage = "https://github.com/Mic92/python-mpd2";
     license = licenses.lgpl3Plus;
-    maintainers = with maintainers; [ mic92 hexa ];
+    maintainers = with maintainers; [
+      mic92
+      hexa
+    ];
   };
-
 }