about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/rfc6555/default.nix
blob: 5be65fee239514097c7842d0fb281ad03137e419 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, selectors2
}:

buildPythonPackage rec {
  pname = "rfc6555";
  version = "0.1.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "sethmlarson";
    repo = pname;
    rev = "v${version}";
    sha256 = "Lmwgusc4EQlF0GHmMTUxWzUCjBk19cvurNwbOnT+1jM=";
  };

  propagatedBuildInputs = [
    selectors2
  ];

  checkInputs = [
    pytestCheckHook
  ];

  disabledTests = [
    # Disabling tests that require a functional DNS IPv{4,6} stack to pass
    "test_create_connection_has_proper_timeout"
  ];

  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 ];
  };
}