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.nix19
1 files changed, 8 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/rfc6555/default.nix b/pkgs/development/python-modules/rfc6555/default.nix
index a3986a490feb9..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,18 +20,14 @@ 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";