about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiodns/default.nix
blob: 50e70d87f9f5937656f70cda6c6ec329a63dfef0 (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
{ stdenv, buildPythonPackage, fetchPypi
, isPy33, isPy26, isPy27, isPyPy, python, pycares, asyncio, trollius }:

buildPythonPackage rec {
  pname = "aiodns";
  version = "1.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d8677adc679ce8d0ef706c14d9c3d2f27a0e0cc11d59730cdbaf218ad52dd9ea";
  };

  propagatedBuildInputs = with stdenv.lib; [ pycares ] 
    ++ optional isPy33 asyncio 
    ++ optional (isPy26 || isPy27 || isPyPy) trollius;

  checkPhase = ''
    ${python.interpreter} tests.py
  '';

  # 'Could not contact DNS servers'
  doCheck = false;

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