about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/aiodns/default.nix
blob: 5fc14b4f66bddc41f2da5a174a6c005f714909dc (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, pycares
, pythonOlder
, typing
}:

buildPythonPackage rec {
  pname = "aiodns";
  version = "3.0.0";
  format = "setuptools";
  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "saghul";
    repo = pname;
    rev = "aiodns-${version}";
    sha256 = "1i91a43gsq222r8212jn4m6bxc3fl04z1mf2h7s39nqywxkggvlp";
  };

  propagatedBuildInputs = [
    pycares
  ] ++ lib.optionals (pythonOlder "3.7") [
    typing
  ];

  # Could not contact DNS servers
  doCheck = false;

  pythonImportsCheck = [ "aiodns" ];

  meta = with lib; {
    description = "Simple DNS resolver for asyncio";
    homepage = "https://github.com/saghul/aiodns";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}