about summary refs log tree commit diff
path: root/pkgs/development/python-modules/rfc6555/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/rfc6555/default.nix')
-rw-r--r--pkgs/development/python-modules/rfc6555/default.nix21
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/rfc6555/default.nix b/pkgs/development/python-modules/rfc6555/default.nix
index d33d518fcea5a..063f6146a192d 100644
--- a/pkgs/development/python-modules/rfc6555/default.nix
+++ b/pkgs/development/python-modules/rfc6555/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pytestCheckHook
-, pythonOlder
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  pytestCheckHook,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
@@ -19,23 +20,19 @@ buildPythonPackage rec {
     hash = "sha256-Lmwgusc4EQlF0GHmMTUxWzUCjBk19cvurNwbOnT+1jM=";
   };
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   disabledTests = [
     # Disabling tests that require a functional DNS IPv{4,6} stack to pass
     "test_create_connection_has_proper_timeout"
   ];
 
-  pythonImportsCheck = [
-    "rfc6555"
-  ];
+  pythonImportsCheck = [ "rfc6555" ];
 
   meta = with lib; {
     description = "Python implementation of the Happy Eyeballs Algorithm";
     homepage = "https://github.com/sethmlarson/rfc6555";
     license = licenses.asl20;
-    maintainers = with maintainers; [ endocrimes ];
+    maintainers = with maintainers; [ ];
   };
 }