2017-07-19 11:32:53 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2019-03-19 09:51:26 +01:00
|
|
|
, isPy27, isPyPy, python, pycares, typing, trollius }:
|
2017-07-19 11:32:53 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiodns";
|
2019-02-14 08:37:09 +01:00
|
|
|
version = "1.2.0";
|
2017-07-19 11:32:53 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 08:37:09 +01:00
|
|
|
sha256 = "d67e14b32176bcf3ff79b5d47c466011ce4adeadfa264f7949da1377332a0449";
|
2017-07-19 11:32:53 +02:00
|
|
|
};
|
|
|
|
|
2019-02-14 15:17:09 +01:00
|
|
|
propagatedBuildInputs = with stdenv.lib; [ pycares typing ]
|
2018-06-25 10:50:44 +02:00
|
|
|
++ optional (isPy27 || isPyPy) trollius;
|
2017-07-19 11:32:53 +02:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} tests.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
# 'Could not contact DNS servers'
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-11-10 22:13:27 +01:00
|
|
|
homepage = https://github.com/saghul/aiodns;
|
2017-07-19 11:32:53 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
description = "Simple DNS resolver for asyncio";
|
|
|
|
};
|
|
|
|
}
|