about summary refs log tree commit diff
path: root/pkgs/development/python-modules/tokenlib/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/tokenlib/default.nix')
-rw-r--r--pkgs/development/python-modules/tokenlib/default.nix17
1 files changed, 10 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/tokenlib/default.nix b/pkgs/development/python-modules/tokenlib/default.nix
index f417235613818..1b0641574eec3 100644
--- a/pkgs/development/python-modules/tokenlib/default.nix
+++ b/pkgs/development/python-modules/tokenlib/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, requests
-, webob
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  requests,
+  webob,
 }:
 
 buildPythonPackage rec {
@@ -17,12 +18,14 @@ buildPythonPackage rec {
     sha256 = "0bq6dqyfwh29pg8ngmrm4mx4q27an9lsj0p9l79p9snn4g2rxzc8";
   };
 
-  propagatedBuildInputs = [ requests webob ];
+  propagatedBuildInputs = [
+    requests
+    webob
+  ];
 
   meta = with lib; {
     homepage = "https://github.com/mozilla-services/tokenlib";
     description = "Generic support library for signed-token-based auth schemes";
     license = licenses.mpl20;
   };
-
 }