about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ledger-agent/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/ledger-agent/default.nix')
-rw-r--r--pkgs/development/python-modules/ledger-agent/default.nix26
1 files changed, 17 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/ledger-agent/default.nix b/pkgs/development/python-modules/ledger-agent/default.nix
index 28bdfb4248572..e514260a8a34a 100644
--- a/pkgs/development/python-modules/ledger-agent/default.nix
+++ b/pkgs/development/python-modules/ledger-agent/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, ledgerblue
-, setuptools
-, libagent
-, wheel
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  ledgerblue,
+  setuptools,
+  libagent,
+  wheel,
 }:
 
 buildPythonPackage rec {
@@ -19,7 +20,10 @@ buildPythonPackage rec {
   };
 
   propagatedBuildInputs = [
-    ledgerblue libagent setuptools wheel
+    ledgerblue
+    libagent
+    setuptools
+    wheel
   ];
 
   # no tests
@@ -29,6 +33,10 @@ buildPythonPackage rec {
     description = "Using Ledger as hardware-based SSH/PGP agent";
     homepage = "https://github.com/romanz/trezor-agent";
     license = licenses.gpl3;
-    maintainers = with maintainers; [ hkjn np mmahut ];
+    maintainers = with maintainers; [
+      hkjn
+      np
+      mmahut
+    ];
   };
 }