about summary refs log tree commit diff
path: root/pkgs/development/python-modules/secure/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/secure/default.nix')
-rw-r--r--pkgs/development/python-modules/secure/default.nix17
1 files changed, 12 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/secure/default.nix b/pkgs/development/python-modules/secure/default.nix
index c1fbd3e83e2a..f78cda89176c 100644
--- a/pkgs/development/python-modules/secure/default.nix
+++ b/pkgs/development/python-modules/secure/default.nix
@@ -1,6 +1,10 @@
-{ lib, buildPythonPackage, fetchFromGitHub, isPy27
-, maya
-, requests
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  isPy27,
+  maya,
+  requests,
 }:
 
 buildPythonPackage rec {
@@ -16,7 +20,10 @@ buildPythonPackage rec {
     sha256 = "1ajz1nx0nnhsc80xbgbc42ib2h08qnccvsp5i583rd9b0f9pklwk";
   };
 
-  propagatedBuildInputs = [ maya requests ];
+  propagatedBuildInputs = [
+    maya
+    requests
+  ];
 
   # no tests in release
   doCheck = false;
@@ -27,6 +34,6 @@ buildPythonPackage rec {
     description = "Adds optional security headers and cookie attributes for Python web frameworks";
     homepage = "https://github.com/TypeError/secure.py";
     license = licenses.mit;
-    maintainers = with maintainers; [ jonringer ];
+    maintainers = [ ];
   };
 }