9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
17 owner = "sethmlarson";
20 hash = "sha256-Lmwgusc4EQlF0GHmMTUxWzUCjBk19cvurNwbOnT+1jM=";
23 nativeCheckInputs = [ pytestCheckHook ];
26 # Disabling tests that require a functional DNS IPv{4,6} stack to pass
27 "test_create_connection_has_proper_timeout"
30 pythonImportsCheck = [ "rfc6555" ];
33 description = "Python implementation of the Happy Eyeballs Algorithm";
34 homepage = "https://github.com/sethmlarson/rfc6555";
35 license = licenses.asl20;